| 1 |
.has-gigantic-font-size, |
| 2 |
.editor-styles-wrapper .has-gigantic-font-size.wp-block { |
| 3 |
/* no suggestion */ |
| 4 |
/* Have to be specific for how Neve targets headings */ |
| 5 |
--fallback-size: clamp( |
| 6 |
var(--wp--preset--font-size--huge, 22px), |
| 7 |
calc(1rem + var(--wp--custom--typography--gigantic--preferred, 5vw)), |
| 8 |
var(--wp--preset--font-size--huge, 42px) * 2 |
| 9 |
); |
| 10 |
font-size: var(--wp--preset--font-size--gigantic, var(--fallback-size)); |
| 11 |
} |
| 12 |
|
| 13 |
.has-ext-small-font-size { |
| 14 |
/* no suggestion */ |
| 15 |
font-size: var(--wp--preset--font-size--ext-small) !important; |
| 16 |
} |
| 17 |
|
| 18 |
.has-ext-medium-font-size { |
| 19 |
/* no suggestion */ |
| 20 |
font-size: var(--wp--preset--font-size--ext-medium) !important; |
| 21 |
} |
| 22 |
|
| 23 |
.has-ext-large-font-size { |
| 24 |
/* no suggestion */ |
| 25 |
font-size: var(--wp--preset--font-size--ext-large) !important; |
| 26 |
} |
| 27 |
|
| 28 |
.has-ext-x-large-font-size { |
| 29 |
/* no suggestion */ |
| 30 |
font-size: var(--wp--preset--font-size--ext-x-large) !important; |
| 31 |
} |
| 32 |
|
| 33 |
.has-ext-gigantic-font-size { |
| 34 |
/* no suggestion */ |
| 35 |
font-size: var(--wp--preset--font-size--ext-gigantic) !important; |
| 36 |
} |
| 37 |
|