ui-lab-theme-onyx 0.3.47 → 0.3.49

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/styles.css +10 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui-lab-theme-onyx",
3
- "version": "0.3.47",
3
+ "version": "0.3.49",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "main": "./styles.css",
package/styles.css CHANGED
@@ -1,3 +1,4 @@
1
+ @reference "tailwindcss";
1
2
 
2
3
  :root {
3
4
  --spacing: 0.25rem;
@@ -43,11 +44,18 @@
43
44
  --background-border: var(--background-600);
44
45
  }
45
46
 
46
- .button.icon { @apply p-[5px] aspect-square inline-flex items-center justify-center }
47
47
  .button.sm { @apply px-2.5 py-1.5 text-xs font-semibold }
48
48
  .button.md { @apply px-3 py-1.5 }
49
49
  .button.lg { @apply px-10 py-2 }
50
50
 
51
+ .button.icon {
52
+ @apply aspect-square;
53
+ }
54
+
55
+ .button.icon.sm { @apply p-1.5 }
56
+ .button.icon.md { @apply p-1.5 }
57
+ .button.icon.lg { @apply p-2 }
58
+
51
59
  .gallery.item,
52
60
  [data-focus-surface="true"] {
53
61
  --background: var(--background-950);
@@ -391,7 +399,7 @@
391
399
  --error-foreground: var(--danger-600);
392
400
  }
393
401
 
394
- .label > label > .required-indicator {
402
+ .label > .text > .required-indicator {
395
403
  --required-color: var(--danger-600);
396
404
  }
397
405