PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
tableberg / src / blocks / toggle / style.scss

style.scss in Tableberg – Simple Gutenberg Table Block 1.1.5, at src/blocks/toggle/style.scss

48 lines 751 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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