@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@l3mpire/ui",
3
- "version": "2.5.2",
3
+ "version": "2.5.4",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org",
6
6
  "access": "public"
@@ -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
- transform: translate(-50%, -50%) scale(0.95);
503
+ scale: 0.95;
500
504
  }
501
505
  to {
502
506
  opacity: 1;
503
- transform: translate(-50%, -50%) scale(1);
507
+ scale: 1;
504
508
  }
505
509
  }
506
510
  @keyframes modal-out {
507
511
  from {
508
512
  opacity: 1;
509
- transform: translate(-50%, -50%) scale(1);
513
+ scale: 1;
510
514
  }
511
515
  to {
512
516
  opacity: 0;
513
- transform: translate(-50%, -50%) scale(0.95);
517
+ scale: 0.95;
514
518
  }
515
519
  }
516
520