Display.js
3 years ago
FlexDirection.js
3 years ago
LayoutCSS.js
3 years ago
LayoutControl.js
3 years ago
ThemeWidth.js
2 years ago
ZIndex.js
3 years ago
editor.scss
3 years ago
editor.scss
69 lines
| 1 | .gblocks-flex-direction-alignItems-column svg { |
| 2 | transform: rotate(-90deg) scale(-1, 1); |
| 3 | } |
| 4 | |
| 5 | .gblocks-flex-direction-justifyContent-column svg { |
| 6 | transform: rotate(90deg); |
| 7 | } |
| 8 | |
| 9 | .gblocks-flex-direction-alignItems-column-reverse svg { |
| 10 | transform: rotate(-90deg); |
| 11 | } |
| 12 | |
| 13 | .gblocks-flex-direction-justifyContent-column-reverse svg { |
| 14 | transform: rotate(90deg) scale(-1, 1); |
| 15 | } |
| 16 | |
| 17 | .gblocks-flex-direction-alignItems-row-reverse svg, |
| 18 | .gblocks-flex-direction-justifyContent-row-reverse svg { |
| 19 | transform: scale(-1, 1); |
| 20 | } |
| 21 | |
| 22 | |
| 23 | .gblocks-flex-controls { |
| 24 | & > .components-base-control__field { |
| 25 | display: flex; |
| 26 | flex-wrap: wrap; |
| 27 | justify-content: space-between; |
| 28 | } |
| 29 | |
| 30 | .gblocks-flex-controls-inner { |
| 31 | flex-basis: 100%; |
| 32 | display: flex; |
| 33 | |
| 34 | & > .components-base-control { |
| 35 | margin-bottom: 0; |
| 36 | |
| 37 | &:nth-child(1) { |
| 38 | margin-right: 1px; |
| 39 | flex-basis: 25%; |
| 40 | } |
| 41 | |
| 42 | &:nth-child(2) { |
| 43 | margin-right: 1px; |
| 44 | flex-basis: 25%; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | p { |
| 49 | margin-bottom: 0; |
| 50 | } |
| 51 | |
| 52 | .gblocks-flex-basis-wrapper { |
| 53 | position: relative; |
| 54 | flex-basis: 50%; |
| 55 | |
| 56 | .components-gblocks-units-control-header__units { |
| 57 | position: absolute; |
| 58 | right: 0; |
| 59 | top: 5px; |
| 60 | } |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | .gblocks-layout-gap { |
| 66 | display: flex; |
| 67 | gap: 5px; |
| 68 | } |
| 69 |