selfprivacy.org/_vendor/github.com/google/docsy/assets/scss/_alerts.scss

21 lines
344 B
SCSS
Raw Normal View History

2024-04-21 23:04:16 +00:00
// Style alert boxes.
.alert {
2024-04-25 22:15:39 +00:00
font-weight: $font-weight-medium;
background: $white;
color: inherit;
border-radius: 0;
2024-04-21 23:04:16 +00:00
2024-04-25 22:15:39 +00:00
@each $color, $value in $theme-colors {
&-#{$color} {
& .alert-heading {
color: $value;
}
2024-04-21 23:04:16 +00:00
2024-04-25 22:15:39 +00:00
border-style: solid;
border-color: $value;
border-width: 0 0 0 4px;
2024-04-21 23:04:16 +00:00
}
2024-04-25 22:15:39 +00:00
}
}