editor.scss
42 lines
| 1 | .gb-variation-selector { |
| 2 | display: flex; |
| 3 | flex-wrap: wrap; |
| 4 | gap: 16px; |
| 5 | |
| 6 | &__button { |
| 7 | font-size: 13px; |
| 8 | display: inline-flex; |
| 9 | flex-direction: column; |
| 10 | height: auto; |
| 11 | padding: 0; |
| 12 | gap: 8px; |
| 13 | margin: 0 !important; |
| 14 | width: 120px; |
| 15 | |
| 16 | svg { |
| 17 | height: 50px; |
| 18 | } |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | .gb-select-variation { |
| 23 | .components-placeholder__label, |
| 24 | .components-placeholder__instructions { |
| 25 | margin: 0 auto; |
| 26 | } |
| 27 | |
| 28 | .components-placeholder__fieldset { |
| 29 | overflow: hidden; |
| 30 | display: flex; |
| 31 | justify-content: center; |
| 32 | text-align: center; |
| 33 | } |
| 34 | |
| 35 | &__actions { |
| 36 | margin-top: 30px; |
| 37 | display: flex; |
| 38 | justify-content: center; |
| 39 | flex-basis: 100%; |
| 40 | } |
| 41 | } |
| 42 |