Files
sage/resources/styles/global/mixins/_linear-gradient.scss
2024-11-05 17:19:47 +00:00

6 lines
208 B
SCSS

// define as many $color-stops as needed
@mixin linear-gradient($direction, $color-stops...) {
background: list.nth(list.nth($color-stops, 1), 1);
background: linear-gradient($direction, $color-stops);
}