srcdev-nuxt-components 6.1.34 → 6.1.35
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.
|
@@ -249,7 +249,7 @@ watch(
|
|
|
249
249
|
@keyframes show {
|
|
250
250
|
to {
|
|
251
251
|
opacity: 1;
|
|
252
|
-
visibility: visible;
|
|
252
|
+
/* visibility: visible; */
|
|
253
253
|
transform: translateY(0);
|
|
254
254
|
}
|
|
255
255
|
}
|
|
@@ -257,12 +257,12 @@ watch(
|
|
|
257
257
|
@keyframes hide {
|
|
258
258
|
0% {
|
|
259
259
|
opacity: 1;
|
|
260
|
-
visibility: visible;
|
|
260
|
+
/* visibility: visible; */
|
|
261
261
|
transform: translateY(0);
|
|
262
262
|
}
|
|
263
263
|
100% {
|
|
264
264
|
opacity: 0;
|
|
265
|
-
visibility: hidden;
|
|
265
|
+
/* visibility: hidden; */
|
|
266
266
|
transform: translateY(-30px);
|
|
267
267
|
}
|
|
268
268
|
}
|
|
@@ -279,7 +279,7 @@ watch(
|
|
|
279
279
|
position: fixed;
|
|
280
280
|
margin: 0;
|
|
281
281
|
opacity: 0;
|
|
282
|
-
visibility: hidden;
|
|
282
|
+
/* visibility: hidden; */
|
|
283
283
|
|
|
284
284
|
z-index: 100;
|
|
285
285
|
|
package/package.json
CHANGED