editor.scss
47 lines
| 1 | .gblocks-typography-component { |
| 2 | .components-dropdown-menu { |
| 3 | margin-bottom: 15px; |
| 4 | } |
| 5 | |
| 6 | &__toggle { |
| 7 | border: 1px solid #ddd; |
| 8 | border-radius: 3px; |
| 9 | margin: 0; |
| 10 | } |
| 11 | |
| 12 | &__appearance { |
| 13 | & > .components-base-control__field { |
| 14 | display: flex; |
| 15 | justify-content: space-between; |
| 16 | |
| 17 | & > .components-base-control { |
| 18 | margin-bottom: 0 !important; |
| 19 | width: calc(50% - 2px); |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | &__font-family { |
| 25 | .components-base-control { |
| 26 | margin-bottom: 0 !important; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | &__font-family-select { |
| 31 | margin-bottom: 5px; |
| 32 | } |
| 33 | |
| 34 | &__font-family-input { |
| 35 | display: flex; |
| 36 | |
| 37 | & > :first-child { |
| 38 | flex: 1; |
| 39 | } |
| 40 | |
| 41 | & > :nth-child(2) { |
| 42 | width: 100px; |
| 43 | margin-left: 5px; |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 |