@underverse-ui/underverse 1.0.27 → 1.0.28

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 CHANGED
@@ -120,6 +120,24 @@ import { Form, FormField, FormItem, FormLabel, FormMessage } from "@underverse-u
120
120
 
121
121
  ## �🚀 Quick Start
122
122
 
123
+ ### Overlay Scrollbars (Optional, Recommended)
124
+
125
+ Use `OverlayScrollbarProvider` to get overlay scrollbars (no layout space taken) across your app and Underverse components.
126
+
127
+ ```tsx
128
+ import "overlayscrollbars/overlayscrollbars.css";
129
+ import { OverlayScrollbarProvider } from "@underverse-ui/underverse";
130
+
131
+ function App() {
132
+ return (
133
+ <>
134
+ <OverlayScrollbarProvider />
135
+ {/* your app */}
136
+ </>
137
+ );
138
+ }
139
+ ```
140
+
123
141
  ### Standalone React (Vite, CRA, etc.)
124
142
 
125
143
  ```tsx