|
@@ -5,7 +5,7 @@
|
|
|
|
|
|
.editor-post-title__block .editor-post-title__input {
|
|
|
color: #{map-deep-get($config-global, "color", "foreground", "default")};
|
|
|
- font-family: #{map-deep-get($config-heading, "font", "family")};
|
|
|
+ font-family: #{map-deep-get($config-heading, "font", "family")}; // For browsers without support for CSS variables.
|
|
|
font-family: var( --font-headings, #{map-deep-get($config-heading, "font", "family")} );
|
|
|
font-weight: #{map-deep-get($config-heading, "font", "weight")};
|
|
|
font-size: (strip-unit(map-deep-get($config-heading, "font", "size", "h2")) + 0em);
|
|
@@ -129,7 +129,7 @@
|
|
|
|
|
|
// Drop cap
|
|
|
.has-drop-cap:not(:focus)::first-letter {
|
|
|
- font-family: #{map-deep-get($config-heading, "font", "family")};
|
|
|
+ font-family: #{map-deep-get($config-heading, "font", "family")}; // For browsers without support for CSS variables.
|
|
|
font-family: var( --font-headings, #{map-deep-get($config-heading, "font", "family")} );
|
|
|
font-size: calc(2 * #{strip-unit(map-deep-get($config-heading, "font", "size", "h1")) + 0em});
|
|
|
font-weight: #{map-deep-get($config-heading, "font", "weight")};
|