|
@@ -1,7 +1,8 @@
|
|
|
body {
|
|
|
color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
|
background-color: #{map-deep-get($config-global, "color", "background", "default")};
|
|
|
- font-family: #{map-deep-get($config-global, "font", "family", "secondary")};
|
|
|
+ font-family: #{map-deep-get($config-global, "font", "family", "secondary")}; // For browsers that don't support CSS variables.
|
|
|
+ font-family: var( --font-base, #{map-deep-get($config-global, "font", "family", "secondary")} );
|
|
|
font-size: #{map-deep-get($config-global, "font", "size", "root")};
|
|
|
font-weight: normal;
|
|
|
line-height: #{map-deep-get($config-global, "font", "line-height", "body")};
|