Omar K.
Omar K.
I have the same issue. My drawer's placement is on the left side of the screen. If I add snappoint behavior, the drawer stops rendering. As soon as I remove...
This is what ended up working for me: ```typescript const snapPoints = ["80px", "300px"]; export default function VaulDrawer() { const [snap, setSnap] = useState(snapPoints[0]); return ( The Hidden Test Testing...
> [react-color/packages/color/src/index.tsx](https://github.com/uiwjs/react-color/blob/629b1d3e7e3ee275c2700045377140a387ba7dc4/packages/color/src/index.tsx#L26) > > Line 26 in [629b1d3](/uiwjs/react-color/commit/629b1d3e7e3ee275c2700045377140a387ba7dc4) > > export { default as Swatch, type SwatchProps, type SwatchPresetColor, type SwatchRectRenderProps } from '@uiw/react-color-swatch'; > [react-color/packages/color-swatch/README.md](https://github.com/uiwjs/react-color/blob/629b1d3e7e3ee275c2700045377140a387ba7dc4/packages/color-swatch/README.md?plain=1#L101) > > Line 101...
yes you can change it in your css file. The original in the vaul package is as follows: ```css [data-vaul-handle] { display: block; position: relative; opacity: 0.7; background: #e2e2e4; margin-left:...
yeah the reason why is because of the animation from framer-motion. So to fix this, pass the motion props and add the backdrop-blur style to it like this: ```typescript