-
-
Notifications
You must be signed in to change notification settings - Fork 5
Properly migrate project to Tailwind CSS v4 #78
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
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
04beab8
chore: upgrade tailwindcss to 4.1.18
Bentroen 9d3b891
fix: properly upgrade project to Tailwind CSS v4
Bentroen 29bfcf7
fix: prevent FontAwesome from injecting CSS after load
Bentroen 7a57548
fix: apply Lato font to theme via CSS variable
Bentroen b521ae6
fix: make buttons use pointer cursor
Bentroen 98fa6ac
chore: delete tailwind.config.js
Bentroen a8e11d9
chore: remove `autoprefixer` from PostCSS config
Bentroen f19d1f9
chore: change `postcss.config.js` extension to `.mjs`
Bentroen 9e93de8
refactor: use modern export syntax in PostCSS config
Bentroen da7f5f6
chore: remove `@shrutibalasa/tailwind-grid-auto-fit` dependency
Bentroen d2e349f
fix: change font definition from `@layer theme` to `@theme` directive
Bentroen 5dbf95e
fix: re-add `ease-out-back` CSS transition defition
Bentroen 5e47d3d
fix: change icon set from `lucide` to `fontawesome` in @shadcn/ui config
Bentroen c9c690c
fix: re-add grid auto-fit utility classes
Bentroen ea0cb6b
fix: mismatched icon size on social login provider icons
Bentroen 3004290
chore: enable suggestions inside strings on VS Code settings
Bentroen 0bbc259
chore: add `globals.css` as config file for Tailwind CSS extension
Bentroen bff6137
chore: enable Tailwind CSS Intellisense inside utility functions
Bentroen 6a53b7d
fix: add Lato font variable to root html element
Bentroen 1e54464
fix: revert to old slider component in thumbnail editor
Bentroen 673ac51
fix: adjust custom slider element appearance
Bentroen 29a343c
fix: adjust form elements' slider appearance
Bentroen afbaa79
refactor: replace unused `size` param in `SongCardGroup` with auto-fit
Bentroen a3308b3
chore: add TODOs related to component standardization
Bentroen 730041f
fix: simplify form label's font size definition
Bentroen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
5 changes: 3 additions & 2 deletions
5
apps/frontend/postcss.config.js → apps/frontend/postcss.config.mjs
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| module.exports = { | ||
| const config = { | ||
| plugins: { | ||
| '@tailwindcss/postcss': {}, | ||
| autoprefixer: {}, | ||
| }, | ||
| }; | ||
|
|
||
| export default config; |
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
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
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
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
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -46,7 +46,7 @@ const HelpPost = async ({ params }: HelpPageProps) => { | |||||
|
|
||||||
| return ( | ||||||
| <> | ||||||
| <article className='max-w-screen-md mx-auto mb-36'> | ||||||
| <article className='max-w-(--breakpoint-md) mx-auto mb-36'> | ||||||
|
||||||
| <article className='max-w-(--breakpoint-md) mx-auto mb-36'> | |
| <article className='max-w-[--breakpoint-md] mx-auto mb-36'> |
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.