@nous-research/ui 0.2.0 → 0.2.1
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/README.md +2 -1
- package/dist/ui/globals.css +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,9 +6,10 @@ the shared design system for react ui @ nous. components, hooks, utils, fonts, o
|
|
|
6
6
|
|
|
7
7
|
`npm i @nous-research/ui` or `pnpm i @nous-research/ui`
|
|
8
8
|
|
|
9
|
-
import the
|
|
9
|
+
import the global styles in your app's root css file:
|
|
10
10
|
|
|
11
11
|
```css
|
|
12
|
+
@import 'tailwindcss';
|
|
12
13
|
@import '@nous-research/ui/styles/globals.css';
|
|
13
14
|
```
|
|
14
15
|
|
package/dist/ui/globals.css
CHANGED