11 lines
269 B
SCSS
11 lines
269 B
SCSS
//
|
|
// Backgrounds
|
|
// --------------------------------------------------
|
|
|
|
@mixin bg-gradient-variant($parent, $deg, $color1, $color2) {
|
|
#{$parent} {
|
|
background: $color1;
|
|
background: linear-gradient($deg, $color1 0%, $color2 100%) !important;
|
|
}
|
|
}
|