-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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(themes): grid falling apart #2418
base: main
Are you sure you want to change the base?
Conversation
@chaejunlee is attempting to deploy a commit to the shadcn-pro Team on Vercel. A member of the Team first needs to authorize it. |
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.
Awesome. Thank you.
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
@chaejunlee I'm still seeing a few issues with the grid at 768px. Would you be able to take a look please?
Hello, @shadcn ! Sorry to @ you, but can you please follow up? |
When resizing the Themes, the grid falls apart.
It is due to the fact that
1fr
ofgrid-cols-[260px_1fr]
needs to beminmax(0,1fr)
.And there was a typo in the className as well, which was
grids-col-2
.I fixed both of the mistakes.
AS-IS
TO-BE