style.scss in Tableberg – Simple Gutenberg Table Block 1.1.5, at src/elements/icon/style.scss
| 1 | .tableberg-icon { |
| 2 | display: flex; |
| 3 | |
| 4 | &.tableberg-icon-as-char { |
| 5 | display: inline-flex; |
| 6 | |
| 7 | + p { |
| 8 | display: inline; |
| 9 | text-align: justify; |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | &:hover { |
| 14 | background: var(--tableberg-icon-bg-hover) !important; |
| 15 | |
| 16 | svg { |
| 17 | fill: var(--tableberg-icon-color-hover) !important; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | a { |
| 22 | display: flex; |
| 23 | line-height: 1; |
| 24 | } |
| 25 | |
| 26 | img { |
| 27 | border-radius: inherit; |
| 28 | overflow: hidden; |
| 29 | } |
| 30 | |
| 31 | svg { |
| 32 | display: block; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | p:has(+ .tableberg-icon-as-char) { |
| 37 | display: inline; |
| 38 | text-align: justify; |
| 39 | } |
| 40 |