@l3mpire/ui 2.5.2 → 2.5.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 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/globals.css +8 -4
package/package.json
CHANGED
package/src/styles/globals.css
CHANGED
|
@@ -6,6 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
@custom-variant dark (&:is([data-theme="dark"] *));
|
|
8
8
|
|
|
9
|
+
body {
|
|
10
|
+
font-variant-numeric: tabular-nums;
|
|
11
|
+
}
|
|
12
|
+
|
|
9
13
|
@theme inline {
|
|
10
14
|
/* ── Spacing ───────────────────────────────────────────────────────────── */
|
|
11
15
|
--spacing-none: 0;
|
|
@@ -496,21 +500,21 @@
|
|
|
496
500
|
@keyframes modal-in {
|
|
497
501
|
from {
|
|
498
502
|
opacity: 0;
|
|
499
|
-
|
|
503
|
+
scale: 0.95;
|
|
500
504
|
}
|
|
501
505
|
to {
|
|
502
506
|
opacity: 1;
|
|
503
|
-
|
|
507
|
+
scale: 1;
|
|
504
508
|
}
|
|
505
509
|
}
|
|
506
510
|
@keyframes modal-out {
|
|
507
511
|
from {
|
|
508
512
|
opacity: 1;
|
|
509
|
-
|
|
513
|
+
scale: 1;
|
|
510
514
|
}
|
|
511
515
|
to {
|
|
512
516
|
opacity: 0;
|
|
513
|
-
|
|
517
|
+
scale: 0.95;
|
|
514
518
|
}
|
|
515
519
|
}
|
|
516
520
|
|