mirror of https://github.com/status-im/consul.git
38 lines
684 B
SCSS
38 lines
684 B
SCSS
%notice {
|
|
margin: 1em 0;
|
|
}
|
|
%notice-success::before {
|
|
@extend %with-check-circle-fill-color-icon;
|
|
}
|
|
%notice-info::before {
|
|
@extend %with-info-circle-fill-color-icon;
|
|
}
|
|
%notice-highlight::before {
|
|
@extend %with-star-icon;
|
|
}
|
|
%notice-warning::before {
|
|
@extend %with-alert-triangle-color-icon;
|
|
}
|
|
%notice-error::before {
|
|
@extend %with-cancel-square-fill-color-icon;
|
|
}
|
|
/**/
|
|
.notice.success {
|
|
@extend %notice-success;
|
|
}
|
|
.notice.warning {
|
|
@extend %notice-warning;
|
|
}
|
|
.notice.error {
|
|
@extend %notice-error;
|
|
}
|
|
.notice.info {
|
|
@extend %notice-info;
|
|
}
|
|
.notice.policy-management {
|
|
@extend %notice-highlight;
|
|
}
|
|
.notice.crd::before {
|
|
@extend %with-logo-kubernetes-color-icon;
|
|
}
|