| 1 |
/* |
| 2 |
* Fallback for Non-FSE themes, which will add blocks margin bottom. |
| 3 |
* We removed these styles in the v3 - https://github.com/nk-crew/ghostkit/commit/d4544839eee8656315823e1f4dd535f9574cacd4 |
| 4 |
* |
| 5 |
* Use :where selector to add possibility to easily overwrite these styles. https://css-tricks.com/almanac/selectors/w/where/ |
| 6 |
*/ |
| 7 |
:where(:root) { |
| 8 |
--gkt-blocks-margin-bottom: 28px; |
| 9 |
} |
| 10 |
|
| 11 |
:where( |
| 12 |
.ghostkit-progress, |
| 13 |
.ghostkit-button-wrapper, |
| 14 |
.ghostkit-icon-box, |
| 15 |
.ghostkit-image-compare, |
| 16 |
.ghostkit-tabs, |
| 17 |
.ghostkit-accordion, |
| 18 |
.ghostkit-countdown, |
| 19 |
.ghostkit-counter-box, |
| 20 |
.ghostkit-alert, |
| 21 |
.ghostkit-carousel, |
| 22 |
.ghostkit-video, |
| 23 |
.ghostkit-testimonial, |
| 24 |
.ghostkit-gist, |
| 25 |
.ghostkit-google-maps, |
| 26 |
.ghostkit-changelog, |
| 27 |
.ghostkit-pricing-table, |
| 28 |
.ghostkit-widgetized-area, |
| 29 |
.ghostkit-instagram, |
| 30 |
.ghostkit-twitter, |
| 31 |
.ghostkit-toc, |
| 32 |
.ghostkit-form, |
| 33 |
.ghostkit-form-field, |
| 34 |
.ghostkit-form-submit-button |
| 35 |
) { |
| 36 |
margin-bottom: var(--gkt-blocks-margin-bottom); |
| 37 |
} |
| 38 |
|