chore: standardizes the usage of Tailwind CSS#916
Merged
Yeom-JinHo merged 2 commits intomagicuidesign:mainfrom Mar 6, 2026
Merged
chore: standardizes the usage of Tailwind CSS#916Yeom-JinHo merged 2 commits intomagicuidesign:mainfrom
Yeom-JinHo merged 2 commits intomagicuidesign:mainfrom
Conversation
|
@1chooo is attempting to deploy a commit to the product-studio Team on Vercel. A member of the Team first needs to authorize it. |
b1e03b3 to
d98391e
Compare
Yeom-JinHo
approved these changes
Mar 6, 2026
Member
Yeom-JinHo
left a comment
There was a problem hiding this comment.
@1chooo
Tysm!
There are a few changes and conflicts, so I’ll rebase first and then merge.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request focuses on updating Tailwind and utility class usage throughout the codebase to use newer or more consistent conventions. The main changes involve replacing
bg-gradient-to-*withbg-linear-to-*, updating bracket notation for dynamic values, and using more explicit utility classes for sizing, positioning, and animation. These changes improve code consistency, future-proofing, and alignment with newer Tailwind standards.Gradient and background utility updates:
bg-gradient-to-*withbg-linear-to-*for gradient backgrounds in components such asCodeBlockWrapper,CodeCollapsibleWrapper,CTASection,MusicPlayer,HeroVideoDialog, and several demo components. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12]Dynamic and bracket notation improvements:
gap-(--gap),duration-(--transition-length),rotate-(--angle),bg-size-[...],bg-position-[...]) across multiple components for improved clarity and Tailwind compatibility. [1] [2] [3] [4] [5] [6] [7]Other utility and style consistency updates:
aspect-[1/1]toaspect-square,max-w-[600px]tomax-w-150, andw-[50px]tow-12.5. [1] [2]z-[1]toz-1, and improved pseudo-class usage (e.g.,not-[&:hover]:duration-1000). [1] [2]group-hover:paused,direction-[reverse]). [1] [2] [3] [4]These changes collectively modernize the styling approach, making the codebase more maintainable and compatible with the latest Tailwind CSS practices.## Description
motivated by: #882 #898 #906