editor.scss
34 lines
| 1 | .gb-grid-control__grid-template-columns-rows--presets { |
| 2 | display: flex; |
| 3 | flex-wrap: wrap; |
| 4 | justify-content: center; |
| 5 | background: #efefef; |
| 6 | padding: 10px; |
| 7 | gap: 7px; |
| 8 | margin-top: -2px; |
| 9 | border-radius: 3px; |
| 10 | border-top-left-radius: 0; |
| 11 | border-top-right-radius: 0; |
| 12 | |
| 13 | &-button { |
| 14 | display: grid; |
| 15 | grid-template-columns: var(--grid-template-columns); |
| 16 | width: 40px; |
| 17 | padding: 3px; |
| 18 | overflow: hidden; |
| 19 | cursor: pointer; |
| 20 | background: none; |
| 21 | border-radius: 0; |
| 22 | border: 0; |
| 23 | gap: 1px; |
| 24 | height: auto; |
| 25 | |
| 26 | .gb-preview-column { |
| 27 | background: #fff; |
| 28 | border: 1px solid #000; |
| 29 | height: 15px; |
| 30 | border-radius: 1px; |
| 31 | } |
| 32 | } |
| 33 | } |
| 34 |