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