vira 31.7.0 → 31.7.1
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.
|
@@ -135,10 +135,8 @@ export const ViraTabs = defineViraElement()({
|
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
${hostClasses['vira-tabs-bar-bottom'].selector} {
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
${viraTheme.colors['vira-grey-foreground-decoration'].foreground.value};
|
|
141
|
-
}
|
|
138
|
+
border-bottom: 1px solid
|
|
139
|
+
${viraTheme.colors['vira-grey-foreground-decoration'].foreground.value};
|
|
142
140
|
|
|
143
141
|
& li::after {
|
|
144
142
|
bottom: 0;
|
|
@@ -151,10 +149,8 @@ export const ViraTabs = defineViraElement()({
|
|
|
151
149
|
}
|
|
152
150
|
|
|
153
151
|
${hostClasses['vira-tabs-bar-top'].selector} {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
${viraTheme.colors['vira-grey-foreground-decoration'].foreground.value};
|
|
157
|
-
}
|
|
152
|
+
border-top: 1px solid
|
|
153
|
+
${viraTheme.colors['vira-grey-foreground-decoration'].foreground.value};
|
|
158
154
|
|
|
159
155
|
& li::after {
|
|
160
156
|
top: 0;
|
|
@@ -167,10 +163,8 @@ export const ViraTabs = defineViraElement()({
|
|
|
167
163
|
}
|
|
168
164
|
|
|
169
165
|
${hostClasses['vira-tabs-bar-left'].selector} {
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
${viraTheme.colors['vira-grey-foreground-decoration'].foreground.value};
|
|
173
|
-
}
|
|
166
|
+
border-left: 1px solid
|
|
167
|
+
${viraTheme.colors['vira-grey-foreground-decoration'].foreground.value};
|
|
174
168
|
|
|
175
169
|
& li::after {
|
|
176
170
|
top: 0;
|
|
@@ -183,10 +177,8 @@ export const ViraTabs = defineViraElement()({
|
|
|
183
177
|
}
|
|
184
178
|
|
|
185
179
|
${hostClasses['vira-tabs-bar-right'].selector} {
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
${viraTheme.colors['vira-grey-foreground-decoration'].foreground.value};
|
|
189
|
-
}
|
|
180
|
+
border-right: 1px solid
|
|
181
|
+
${viraTheme.colors['vira-grey-foreground-decoration'].foreground.value};
|
|
190
182
|
|
|
191
183
|
& li::after {
|
|
192
184
|
top: 0;
|
|
@@ -235,6 +227,11 @@ export const ViraTabs = defineViraElement()({
|
|
|
235
227
|
display: flex;
|
|
236
228
|
padding: 8px 16px;
|
|
237
229
|
}
|
|
230
|
+
|
|
231
|
+
${ViraMenuTrigger} {
|
|
232
|
+
margin-top: -1lh;
|
|
233
|
+
margin-bottom: 2.6px;
|
|
234
|
+
}
|
|
238
235
|
`;
|
|
239
236
|
},
|
|
240
237
|
render({ inputs }) {
|