-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(v4): card - css syntax warning in tailwind v4 and vite #6955
Conversation
when building using vite and tailwind vite plugin this following warning appears ``` rendering chunks (10)...warnings when minifying css: ▲ [WARNING] Unexpected ")" [css-syntax-error] grid-cols-\[1fr_auto\]:has(:is()){grid-template-columns:1fr ^ ``` this is fixed by complying to tailwind new way of writing data attribute documented [here](https://tailwindcss.com/docs/hover-focus-and-other-states#data-attributes)
@FatahChan is attempting to deploy a commit to the shadcn-pro Team on Vercel. A member of the Team first needs to authorize it. |
this resolves |
@TheMikeyRoss Do I need to do something for the workflow to run? |
@shadcn is the only maintainer I know of. but only an authorized team member in their vercel can approve the workflow. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved. Thank you.
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
when building using vite and tailwind vite plugin
this following warning appears
this is fixed by complying to tailwind new way of writing data attribute documented here
change
to
resolves #6930