@limpiolux/ui-styles 1.1.3 → 1.1.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/components.css +12 -3
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -709,9 +709,18 @@
|
|
|
709
709
|
opacity: 0;
|
|
710
710
|
transform: translateX(-2px);
|
|
711
711
|
transition:
|
|
712
|
-
max-width
|
|
713
|
-
opacity
|
|
714
|
-
transform
|
|
712
|
+
max-width 300ms ease,
|
|
713
|
+
opacity 240ms ease,
|
|
714
|
+
transform 300ms ease;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
@media (min-width: 768px) {
|
|
718
|
+
.soft-tab-text {
|
|
719
|
+
transition:
|
|
720
|
+
max-width 220ms ease,
|
|
721
|
+
opacity 180ms ease,
|
|
722
|
+
transform 220ms ease;
|
|
723
|
+
}
|
|
715
724
|
}
|
|
716
725
|
|
|
717
726
|
.soft-tab-active .soft-tab-text {
|