open-consul/ui-v2/app/styles/components/notice.scss

31 lines
523 B
SCSS

@import '../base/components/notice/index';
%notice {
margin-bottom: 1em;
}
/* These need replacing with new icons */
%notice-success {
@extend %with-passing;
}
%notice-info {
@extend %with-passing; /* needs a better info button*/
}
%notice-highlight {
@extend %with-star;
}
%notice-warning {
@extend %with-warning;
}
%notice-error {
@extend %with-critical;
}
/**/
.notice.warning {
@extend %notice-warning;
}
.notice.info {
@extend %notice-info;
}
.notice.policy-management {
@extend %notice-highlight;
}