| 1 |
.has-ext-small-font-size { |
| 2 |
/* no suggestion */ |
| 3 |
font-size: var(--wp--preset--font-size--ext-small) !important; |
| 4 |
} |
| 5 |
|
| 6 |
.has-ext-medium-font-size { |
| 7 |
/* no suggestion */ |
| 8 |
font-size: var(--wp--preset--font-size--ext-medium) !important; |
| 9 |
} |
| 10 |
|
| 11 |
.has-ext-large-font-size { |
| 12 |
/* no suggestion */ |
| 13 |
font-size: var(--wp--preset--font-size--ext-large) !important; |
| 14 |
line-height: 1.2; |
| 15 |
} |
| 16 |
|
| 17 |
.has-ext-x-large-font-size { |
| 18 |
/* no suggestion */ |
| 19 |
font-size: var(--wp--preset--font-size--ext-x-large) !important; |
| 20 |
line-height: 1; |
| 21 |
} |
| 22 |
|
| 23 |
.has-ext-xx-large-font-size { |
| 24 |
/* no suggestion */ |
| 25 |
font-size: var(--wp--preset--font-size--ext-xx-large) !important; |
| 26 |
line-height: 1; |
| 27 |
} |
| 28 |
|
| 29 |
/* Line height */ |
| 30 |
.has-ext-x-large-font-size:not([style*="line-height"]) { |
| 31 |
/* no suggestion */ |
| 32 |
line-height: 1.1; |
| 33 |
} |
| 34 |
|
| 35 |
.has-ext-xx-large-font-size:not([style*="line-height"]) { |
| 36 |
/* no suggestion */ |
| 37 |
line-height: 1.1; |
| 38 |
} |
| 39 |
|
| 40 |
.ext .wp-block-group > * { |
| 41 |
/* Line height */ |
| 42 |
margin-top: 0; |
| 43 |
margin-bottom: 0; |
| 44 |
} |
| 45 |
|
| 46 |
.ext .wp-block-group > * + * { |
| 47 |
margin-top: var(--wp--style--block-gap, 1.75rem); |
| 48 |
margin-bottom: 0; |
| 49 |
} |
| 50 |
|
| 51 |
.ext h2 { |
| 52 |
margin-top: var(--wp--style--block-gap, 1.75rem); |
| 53 |
margin-bottom: var(--wp--style--block-gap, 1.75rem); |
| 54 |
} |
| 55 |
|
| 56 |
.has-ext-x-large-font-size + p, |
| 57 |
.has-ext-x-large-font-size + h3 { |
| 58 |
margin-top: 0.5rem; |
| 59 |
} |
| 60 |
|
| 61 |
.ext .wp-block-buttons > .wp-block-button.wp-block-button__width-25 { |
| 62 |
width: calc(25% - var(--wp--style--block-gap, 0.5em) * 0.75); |
| 63 |
min-width: 12rem; |
| 64 |
} |
| 65 |
|