mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
67d7e26e05
* Generate CSS variables See #23349 Supersedes #23446 * Ignore _root.scss for linting
16 lines
333 B
SCSS
16 lines
333 B
SCSS
:root {
|
|
@each $color, $value in $colors {
|
|
--#{$color}: $value;
|
|
}
|
|
|
|
@each $color, $value in $theme-colors {
|
|
--#{$color}: $value;
|
|
}
|
|
|
|
@each $bp, $value in $grid-breakpoints {
|
|
--breakpoint-#{$bp}: $value;
|
|
}
|
|
|
|
--font-family-sans-serif: $font-family-sans-serif;
|
|
--font-family-monospace: $font-family-monospace;
|
|
}
|