editor.css
27 lines
| 1 | .wp-block-columns :where(.wp-block) { |
| 2 | max-width: none; |
| 3 | margin-left: 0; |
| 4 | margin-right: 0; |
| 5 | } |
| 6 | |
| 7 | html :where(.wp-block-column) { |
| 8 | margin-top: 0; |
| 9 | margin-bottom: 0; |
| 10 | } |
| 11 | |
| 12 | div[data-type='surecart/columns'] |
| 13 | :is(div[data-type='surecart/column'], div[data-type='core/column']) { |
| 14 | margin-block-start: auto; |
| 15 | } |
| 16 | |
| 17 | @media screen and (min-width: 782px) { |
| 18 | .wp-block-surecart-columns:not(.is-not-stacked-on-mobile) |
| 19 | > .wp-block-surecart-column { |
| 20 | flex-basis: content; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | .editor-styles-wrapper :where(body .is-layout-flow) > :last-child:last-child { |
| 25 | margin-top: 0; |
| 26 | } |
| 27 |