table-width.scss in Tableberg – Simple Gutenberg Table Block 1.1.5, at src/table-width.scss
| 1 | .tableberg-table-wrapper { |
| 2 | box-sizing: border-box; |
| 3 | |
| 4 | &.justify-table-left > table { |
| 5 | margin-left: 0 !important; |
| 6 | margin-right: auto !important; |
| 7 | } |
| 8 | |
| 9 | &.justify-table-center > table { |
| 10 | margin-left: auto !important; |
| 11 | margin-right: auto !important; |
| 12 | } |
| 13 | |
| 14 | &.justify-table-right > table { |
| 15 | margin-left: auto !important; |
| 16 | margin-right: 0 !important; |
| 17 | } |
| 18 | |
| 19 | &.alignwide, |
| 20 | &.alignfull { |
| 21 | clear: both; |
| 22 | } |
| 23 | } |
| 24 |