blob: 6b74e61f22609ed231ae6a0c5919e45d1e8b33d9 [file] [log] [blame]
Scott Bakerbeb3cfa2019-10-01 14:44:30 -07001@import '../base/components/notice/index';
2%notice {
3 margin-bottom: 1em;
4}
5%notice-success::before {
6 @extend %with-check-circle-fill-color-icon;
7}
8%notice-info::before {
9 @extend %with-info-circle-fill-color-icon;
10}
11%notice-highlight::before {
12 @extend %with-star-icon;
13}
14%notice-warning::before {
15 @extend %with-alert-triangle-color-icon;
16}
17%notice-error::before {
18 @extend %with-cancel-square-fill-color-icon;
19}
20/**/
khenaidooac637102019-01-14 15:44:34 -050021.notice.warning {
22 @extend %notice-warning;
23}
24.notice.info {
25 @extend %notice-info;
26}
27.notice.policy-management {
28 @extend %notice-highlight;
29}