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
I am working on a React project using Next.js and TailwindCSS. I have a custom Select component where I am trying to dynamically apply TailwindCSS classes using a cn function. The className does get applied to the HTML element, but the styles are not reflected.
screenshot
Demo
You can find a demonstration of the issue on this CodeSandbox.
Here is a simplified version of my Select component:
The issue is that while the className like "h-4 w-4 rounded-full bg-gradient-to-br from-green-300 via-blue-500 to-purple-600" does get applied to the div, the gradient background doesn't show up.
Things I've tried:
Clearing cache
Checking for specificity issues
Making sure TailwindCSS is correctly configured and imported
Any help would be appreciated. Thank you!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am working on a React project using Next.js and TailwindCSS. I have a custom Select component where I am trying to dynamically apply TailwindCSS classes using a cn function. The className does get applied to the HTML element, but the styles are not reflected.
screenshot
Demo
You can find a demonstration of the issue on this CodeSandbox.
Here is a simplified version of my Select component:
And here is my cn function:
The issue is that while the className like "h-4 w-4 rounded-full bg-gradient-to-br from-green-300 via-blue-500 to-purple-600" does get applied to the div, the gradient background doesn't show up.
Things I've tried:
Clearing cache
Checking for specificity issues
Making sure TailwindCSS is correctly configured and imported
Any help would be appreciated. Thank you!
Beta Was this translation helpful? Give feedback.
All reactions