add base framework styles

This commit is contained in:
2024-11-05 17:19:47 +00:00
parent 0cbe68b174
commit eeea696c67
33 changed files with 1011 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
// 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);
}