@nous-research/ui 0.2.0 → 0.2.2
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 -1
- 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
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@source ".";
|
|
1
2
|
@import './fonts.css';
|
|
2
3
|
@import './components/fit-text/fit-text.css' layer(components);
|
|
3
4
|
@import './components/grid/grid.css' layer(components);
|
|
@@ -268,7 +269,6 @@
|
|
|
268
269
|
* {
|
|
269
270
|
@apply antialiased;
|
|
270
271
|
|
|
271
|
-
text-box-trim: trim-both;
|
|
272
272
|
scrollbar-width: thin;
|
|
273
273
|
scrollbar-color: transparent transparent;
|
|
274
274
|
|