|
@@ -40,30 +40,37 @@
|
|
|
}
|
|
|
|
|
|
// Cover
|
|
|
+$font_size_xxxxl: map-deep-get($config-global, "font", "size", "xxxxl");
|
|
|
+$font_size_xxxl: map-deep-get($config-global, "font", "size", "xxxl");
|
|
|
+$font_size_xxl: map-deep-get($config-global, "font", "size", "xxl");
|
|
|
+$font_size_xl: map-deep-get($config-global, "font", "size", "xl");
|
|
|
+$font_size_lg: map-deep-get($config-global, "font", "size", "lg");
|
|
|
+$font_size_md: map-deep-get($config-global, "font", "size", "md");
|
|
|
+
|
|
|
.wp-block-cover,
|
|
|
.wp-block-cover-image {
|
|
|
h1 {
|
|
|
- font-size: #{map-deep-get($config-global, "font", "size", "xxxxl")};
|
|
|
+ font-size: (strip-unit( $font_size_xxxxl ) + 0em);
|
|
|
}
|
|
|
|
|
|
h2 {
|
|
|
- font-size: #{map-deep-get($config-global, "font", "size", "xxxl")};
|
|
|
+ font-size: (strip-unit( $font_size_xxxl ) + 0em);
|
|
|
}
|
|
|
|
|
|
h3 {
|
|
|
- font-size: #{map-deep-get($config-global, "font", "size", "xxl")};
|
|
|
+ font-size: (strip-unit( $font_size_xxl ) + 0em);
|
|
|
}
|
|
|
|
|
|
h4 {
|
|
|
- font-size: #{map-deep-get($config-global, "font", "size", "xl")};
|
|
|
+ font-size: (strip-unit( $font_size_xl ) + 0em);
|
|
|
}
|
|
|
|
|
|
h5 {
|
|
|
- font-size: #{map-deep-get($config-global, "font", "size", "lg")};
|
|
|
+ font-size: (strip-unit( $font_size_lg ) + 0em);
|
|
|
}
|
|
|
|
|
|
h6 {
|
|
|
- font-size: #{map-deep-get($config-global, "font", "size", "md")};
|
|
|
+ font-size: (strip-unit( $font_size_md ) + 0em);
|
|
|
}
|
|
|
|
|
|
@include media(mobile) {
|