style.scss in Tableberg – Simple Gutenberg Table Block 1.1.5, at src/blocks/toggle/style.scss
| 1 | .tab-headings { |
| 2 | display: flex; |
| 3 | padding: 8px 0; |
| 4 | gap: 16px; |
| 5 | flex-wrap: noWrap; |
| 6 | } |
| 7 | |
| 8 | .tab-headings.left { |
| 9 | justify-content: flex-start; |
| 10 | } |
| 11 | |
| 12 | .tab-headings.center { |
| 13 | justify-content: center; |
| 14 | } |
| 15 | |
| 16 | .tab-headings.right { |
| 17 | justify-content: flex-end; |
| 18 | } |
| 19 | |
| 20 | .tab-headings.full { |
| 21 | justify-content: space-between; |
| 22 | width: 100%; |
| 23 | } |
| 24 | |
| 25 | .tab-heading { |
| 26 | cursor: pointer; |
| 27 | display: flex; |
| 28 | justify-content: center; |
| 29 | align-items: center; |
| 30 | overflow: visible; |
| 31 | position: relative; |
| 32 | } |
| 33 | |
| 34 | .tab-headings.full .tab-heading { |
| 35 | width: 100%; |
| 36 | text-align: center; |
| 37 | } |
| 38 | |
| 39 | .tab-heading p { |
| 40 | padding: 3px; |
| 41 | margin: 0px 10px; |
| 42 | text-align: center; |
| 43 | font-size: 1rem; |
| 44 | width: auto; |
| 45 | white-space: nowrap; |
| 46 | display: inline-block; |
| 47 | } |
| 48 |