@cal.macconnachie/web-components 2.6.3 → 2.6.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/index.js +15 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7311,11 +7311,18 @@ class Pe extends M {
|
|
|
7311
7311
|
}
|
|
7312
7312
|
|
|
7313
7313
|
:host([active]) {
|
|
7314
|
-
display:
|
|
7314
|
+
display: flex;
|
|
7315
|
+
flex-direction: column;
|
|
7316
|
+
flex: 1;
|
|
7317
|
+
min-height: 0;
|
|
7315
7318
|
}
|
|
7316
7319
|
|
|
7317
7320
|
.base-tab {
|
|
7318
7321
|
width: 100%;
|
|
7322
|
+
display: flex;
|
|
7323
|
+
flex-direction: column;
|
|
7324
|
+
flex: 1;
|
|
7325
|
+
min-height: 0;
|
|
7319
7326
|
}
|
|
7320
7327
|
`;
|
|
7321
7328
|
}
|
|
@@ -7668,17 +7675,20 @@ class ae extends M {
|
|
|
7668
7675
|
.tabs-content {
|
|
7669
7676
|
flex: 1;
|
|
7670
7677
|
min-width: 0;
|
|
7678
|
+
min-height: 0;
|
|
7671
7679
|
animation: fadeIn 0.2s ease-in;
|
|
7672
|
-
overflow
|
|
7673
|
-
|
|
7680
|
+
overflow: hidden;
|
|
7681
|
+
display: flex;
|
|
7682
|
+
flex-direction: column;
|
|
7674
7683
|
}
|
|
7675
7684
|
|
|
7676
7685
|
.base-tabs--vertical .tabs-content {
|
|
7677
7686
|
flex: 1;
|
|
7678
7687
|
min-width: 0;
|
|
7679
7688
|
min-height: 0;
|
|
7680
|
-
overflow
|
|
7681
|
-
|
|
7689
|
+
overflow: hidden;
|
|
7690
|
+
display: flex;
|
|
7691
|
+
flex-direction: column;
|
|
7682
7692
|
}
|
|
7683
7693
|
|
|
7684
7694
|
@keyframes fadeIn {
|