mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
17 lines
333 B
SCSS
17 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;
|
||
|
}
|