srcdev-nuxt-components 2.5.7 → 2.5.8
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.
|
@@ -532,7 +532,9 @@ watch(
|
|
|
532
532
|
height: calc(var(--_icon-size) - var(--_border-width) * 2 - var(--_outline-width) * 2);
|
|
533
533
|
|
|
534
534
|
opacity: 0;
|
|
535
|
-
transition: opacity
|
|
535
|
+
transition-property: opacity, transform; /* For reference */
|
|
536
|
+
transition-timing-function: linear; /* For reference */
|
|
537
|
+
transition-duration: 0.2s; /* For reference */
|
|
536
538
|
|
|
537
539
|
&.show {
|
|
538
540
|
opacity: 1;
|
package/package.json
CHANGED