@blorkfield/blork-tabs 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/styles.css +7 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
* --blork-tabs-header-bg: Header background color
|
|
13
13
|
* --blork-tabs-header-color: Header text color
|
|
14
14
|
* --blork-tabs-content-bg: Content background color
|
|
15
|
+
* --blork-tabs-content-gap: Gap between content items (default: 12px)
|
|
16
|
+
* --blork-tabs-content-max-height: Max height before scrolling (default: 20vh)
|
|
15
17
|
* --blork-tabs-accent: Accent color for interactive elements
|
|
16
18
|
*/
|
|
17
19
|
|
|
@@ -104,9 +106,13 @@
|
|
|
104
106
|
|
|
105
107
|
/* Content Area */
|
|
106
108
|
.blork-tabs-content {
|
|
109
|
+
display: flex;
|
|
110
|
+
flex-direction: column;
|
|
111
|
+
gap: var(--blork-tabs-content-gap, 12px);
|
|
107
112
|
background: var(--blork-tabs-content-bg, #1a1a2e);
|
|
108
113
|
padding: 12px;
|
|
109
|
-
max-height:
|
|
114
|
+
max-height: var(--blork-tabs-content-max-height, 20vh);
|
|
115
|
+
overflow-x: hidden;
|
|
110
116
|
overflow-y: auto;
|
|
111
117
|
}
|
|
112
118
|
|