mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 20:14:15 +00:00
073b7b6717
* Bootstrap5 migration
11 lines
268 B
SCSS
Executable file
11 lines
268 B
SCSS
Executable file
// 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
|