braid-ui 1.0.5 → 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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "braid-ui",
3
3
  "private": false,
4
- "version": "1.0.5",
4
+ "version": "1.0.7",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
7
7
  "module": "./dist/index.js",
package/src/styles.css CHANGED
@@ -115,10 +115,11 @@ All colors MUST be HSL.
115
115
 
116
116
  @layer base {
117
117
  * {
118
- @apply border-border;
118
+ border-color: hsl(var(--border));
119
119
  }
120
120
 
121
121
  body {
122
- @apply bg-background text-foreground;
122
+ background-color: hsl(var(--background));
123
+ color: hsl(var(--foreground));
123
124
  }
124
125
  }