landingpage/themes/app-landingpage/assets/scss/mixins/_alert.scss
Dorian Zedler 1b923de71a
Some checks failed
continuous-integration/drone Build is failing
Chore: initial commit
2022-08-06 20:25:26 +02:00

10 lines
187 B
SCSS

@mixin alert-variant($background, $border, $color) {
color: $color;
@include gradient-bg($background);
border-color: $border;
.alert-link {
color: darken($color, 10%);
}
}