phpldapadmin/resources/themes/architect/src/components/bootstrap5/mixins/_alert.scss

12 lines
268 B
SCSS

// scss-docs-start alert-variant-mixin
@mixin alert-variant($background, $border, $color) {
color: $color;
@include gradient-bg($background);
border-color: $border;
.alert-link {
color: shade-color($color, 20%);
}
}
// scss-docs-end alert-variant-mixin