|
@@ -4,7 +4,8 @@
|
|
|
.wp-block-button__link {
|
|
|
color: #{map-deep-get($config-button, "color", "text")};
|
|
|
font-weight: #{map-deep-get($config-button, "font", "weight")};
|
|
|
- font-family: #{map-deep-get($config-button, "font", "family")};
|
|
|
+ font-family: #{map-deep-get($config-button, "font", "family")}; // For browsers that don't support CSS variables.
|
|
|
+ font-family: var( --font-headings, #{map-deep-get($config-button, "font", "family")} );
|
|
|
font-size: (strip-unit(map-deep-get($config-button, "font", "size")) + 0em);
|
|
|
line-height: #{map-deep-get($config-button, "font", "line-height")};
|
|
|
background-color: #{map-deep-get($config-button, "color", "background")};
|