21 lines
369 B
SCSS
21 lines
369 B
SCSS
|
// Alerts
|
||
|
@each $key, $val in $fluent-colors {
|
||
|
.alert-#{$key} {
|
||
|
background-color: $val !important;
|
||
|
color: set-notification-text-color($val);
|
||
|
.alert-link {
|
||
|
color: set-notification-text-color($val);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.alert {
|
||
|
border-radius: 0;
|
||
|
border: 0;
|
||
|
.alert-link {
|
||
|
font-weight: 300;
|
||
|
&:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
}
|