|
@@ -332,7 +332,8 @@ hr.wp-block-separator.is-style-wide,
|
|
|
.a8c-posts-list .a8c-posts-list-item__featured span {
|
|
|
background: #{map-deep-get($config-global, "color", "background", "light")};
|
|
|
color: #{map-deep-get($config-global, "color", "foreground", "light")};
|
|
|
- font-family: #{map-deep-get($config-global, "font", "family", "ui")};
|
|
|
+ font-family: #{map-deep-get($config-global, "font", "family", "ui")}; // For browsers without CSS custom properties support.
|
|
|
+ font-family: var( --font-base, #{map-deep-get($config-global, "font", "family", "ui")} );
|
|
|
//text-transform: uppercase;
|
|
|
}
|
|
|
|
|
@@ -343,6 +344,7 @@ hr.wp-block-separator.is-style-wide,
|
|
|
.jetpack-business-hours {
|
|
|
dt {
|
|
|
font-family: inherit;
|
|
|
+ font-family: var( --font-base, inherit );
|
|
|
}
|
|
|
}
|
|
|
|