@wallet-ui/tailwind 2.0.0 → 2.1.0
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 +15 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,4 +11,18 @@
|
|
|
11
11
|
|
|
12
12
|
# @wallet-ui/tailwind
|
|
13
13
|
|
|
14
|
-
Tailwind CSS for
|
|
14
|
+
This package provides the necessary Tailwind CSS styles for the components in [`@wallet-ui/react`](https://wallet-ui.dev/docs/react).
|
|
15
|
+
|
|
16
|
+
The components are unstyled by default but highly customizable through CSS variables. This package provides a clean, default theme to get you started.
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
To use these styles in your project, import the `index.css` file into your main application CSS file.
|
|
21
|
+
|
|
22
|
+
```css
|
|
23
|
+
@import '@wallet-ui/tailwind/index.css';
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Documentation
|
|
27
|
+
|
|
28
|
+
For detailed setup instructions, please see the framework guides in the React documentation, such as the [Vite guide](https://wallet-ui.dev/docs/react/guides/vite).
|