# tableberg/1.1.5/src/blocks/toggle/style.scss

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 48 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/blocks/toggle/style.scss
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/src/blocks/toggle/style.scss
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/blocks/toggle/style.scss#L10-L20`.

```scss
.tab-headings {
    display: flex;
    padding: 8px 0;
    gap: 16px;
    flex-wrap: noWrap;
}

.tab-headings.left {
    justify-content: flex-start;
}

.tab-headings.center {
    justify-content: center;
}

.tab-headings.right {
    justify-content: flex-end;
}

.tab-headings.full {
    justify-content: space-between;
    width: 100%;
}

.tab-heading {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    position: relative;
}

.tab-headings.full .tab-heading {
    width: 100%;
    text-align: center;
}

.tab-heading p {
    padding: 3px;
    margin: 0px 10px;
    text-align: center;
    font-size: 1rem;
    width: auto;
    white-space: nowrap;
    display: inline-block;
}

```
