@run-ai-dev/styles 1.0.6 → 1.0.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.css +20 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@run-ai-dev/styles",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "sideEffects": true,
6
6
  "main": "./src/index.css",
package/src/index.css CHANGED
@@ -390,10 +390,6 @@
390
390
  top: calc(var(--spacing) * -3);
391
391
  }
392
392
 
393
- .-top-4 {
394
- top: calc(var(--spacing) * -4);
395
- }
396
-
397
393
  .-top-8\.5 {
398
394
  top: calc(var(--spacing) * -8.5);
399
395
  }
@@ -418,6 +414,14 @@
418
414
  top: calc(var(--spacing) * -30);
419
415
  }
420
416
 
417
+ .-top-40 {
418
+ top: calc(var(--spacing) * -40);
419
+ }
420
+
421
+ .-top-50 {
422
+ top: calc(var(--spacing) * -50);
423
+ }
424
+
421
425
  .-top-117\.5 {
422
426
  top: calc(var(--spacing) * -117.5);
423
427
  }
@@ -526,6 +530,18 @@
526
530
  right: 5px;
527
531
  }
528
532
 
533
+ .-bottom-8 {
534
+ bottom: calc(var(--spacing) * -8);
535
+ }
536
+
537
+ .-bottom-14 {
538
+ bottom: calc(var(--spacing) * -14);
539
+ }
540
+
541
+ .-bottom-25 {
542
+ bottom: calc(var(--spacing) * -25);
543
+ }
544
+
529
545
  .-bottom-\[19px\] {
530
546
  bottom: calc(19px * -1);
531
547
  }