You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add Tailwind CSS and shadcn/ui integration guide (#851)
Add documentation section covering best practices for using
react-split-pane with Tailwind CSS and shadcn/ui, including
direct class usage, custom divider components, and CSS variable
overrides.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+109Lines changed: 109 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -339,6 +339,115 @@ A subtle single-pixel divider:
339
339
}
340
340
```
341
341
342
+
## Tailwind CSS & shadcn/ui
343
+
344
+
React Split Pane works seamlessly with Tailwind CSS and shadcn/ui. The component uses plain CSS and inline styles (no CSS-in-JS), so there are no conflicts with utility-first frameworks.
345
+
346
+
### Using Tailwind Classes
347
+
348
+
Apply Tailwind classes directly via `className` props. Skip importing the default stylesheet for full Tailwind control:
0 commit comments