@l3mpire/ui 2.5.1 → 2.5.3
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 +608 -605
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +630 -627
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/globals.css +4 -4
package/package.json
CHANGED
package/src/styles/globals.css
CHANGED
|
@@ -496,21 +496,21 @@
|
|
|
496
496
|
@keyframes modal-in {
|
|
497
497
|
from {
|
|
498
498
|
opacity: 0;
|
|
499
|
-
|
|
499
|
+
scale: 0.95;
|
|
500
500
|
}
|
|
501
501
|
to {
|
|
502
502
|
opacity: 1;
|
|
503
|
-
|
|
503
|
+
scale: 1;
|
|
504
504
|
}
|
|
505
505
|
}
|
|
506
506
|
@keyframes modal-out {
|
|
507
507
|
from {
|
|
508
508
|
opacity: 1;
|
|
509
|
-
|
|
509
|
+
scale: 1;
|
|
510
510
|
}
|
|
511
511
|
to {
|
|
512
512
|
opacity: 0;
|
|
513
|
-
|
|
513
|
+
scale: 0.95;
|
|
514
514
|
}
|
|
515
515
|
}
|
|
516
516
|
|