| 1 |
/* |
| 2 |
* Fix: Missing style for widget spacing. |
| 3 |
* |
| 4 |
* Elementor adds spacing between widgets via the CSS variable `--kit-widget-spacing` |
| 5 |
* (set by the active Site Kit / generated CSS). |
| 6 |
* Here is an existing issue, it should also has "--kit-widget-spacing: 0px" here: |
| 7 |
* .elementor-widget:not(:last-child).elementor-absolute, |
| 8 |
* .elementor-widget:not(:last-child).elementor-widget__width-auto, |
| 9 |
* .elementor-widget:not(:last-child).elementor-widget__width-initial { |
| 10 |
* margin-block-end: 0; |
| 11 |
* } |
| 12 |
*/ |
| 13 |
.elementor-widget:not(:last-child).elementor-absolute, |
| 14 |
.elementor-widget:not(:last-child).elementor-widget__width-auto, |
| 15 |
.elementor-widget:not(:last-child).elementor-widget__width-initial { |
| 16 |
--kit-widget-spacing: 0px; |
| 17 |
} |
| 18 |
|