omgovich / react-colorful

🎨 A tiny (2,8 KB) color picker component for React and Preact apps
https://omgovich.github.io/react-colorful
MIT License
3.14k stars 101 forks source link

Cannot manipulate the colorful css with Next.js ? #200

Open ZalwayJH opened 1 year ago

ZalwayJH commented 1 year ago

In Nextjs you have to import the style sheet but i cant find a way to get it to interact with the component at all. I've tried applying a style to the container and then doing .container.react-colorful{ } but no luck. Does anyone know how to make it work?

anshul360 commented 1 year ago

Not sure if you already got the solution. I used a workaround. I applied the style directly to the color picker:

<HexColorPicker color={bmbgcolor} onChange={setbmbgcolor} style={{width: "auto"}} />