-
Notifications
You must be signed in to change notification settings - Fork 121
tailwind css style issue fixed #311
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
Conversation
❌ Checks Failed
Please fix the following issues before merging: 🔨 Continuous Integration FailedIssue: The build process failed to complete. How to fix:
🛠️ Next Steps
|
❌ Checks Failed
Please fix the following issues before merging: 📝 Code Linting FailedIssue: Code formatting or style violations detected. Specific problems: • Code formatting issues detected How to fix:
Need help with linting? Check out the Linting Guide for Windows Users for detailed instructions. 🛠️ Next Steps
|
🎉 All Checks Passed!
✅ Completed Workflows
🚀 This PR is ready for review and can be safely merged to Great work! Your code meets all quality standards. 👏 |
🎉 All Checks Passed!
✅ Completed Workflows
🚀 This PR is ready for review and can be safely merged to Great work! Your code meets all quality standards. 👏 |
|
@vaishcodescape Please fix this. We do not intend to keep it in dark mode :)
|
|
Issue is fixed should work fine now |
❌ Checks Failed
Please fix the following issues before merging: 📝 Code Linting FailedIssue: Code formatting or style violations detected. Specific problems: • Code formatting issues detected How to fix:
Need help with linting? Check out the Linting Guide for Windows Users for detailed instructions. 🛠️ Next Steps
|
🎉 All Checks Passed!
✅ Completed Workflows
🚀 This PR is ready for review and can be safely merged to Great work! Your code meets all quality standards. 👏 |
🎉 All Checks Passed!
✅ Completed Workflows
🚀 This PR is ready for review and can be safely merged to Great work! Your code meets all quality standards. 👏 |
🎉 All Checks Passed!
✅ Completed Workflows
🚀 This PR is ready for review and can be safely merged to Great work! Your code meets all quality standards. 👏 |
|
Hey can the codebase mods merge this branch |
🎉 All Checks Passed!
✅ Completed Workflows
🚀 This PR is ready for review and can be safely merged to Great work! Your code meets all quality standards. 👏 |

name: Style issue fixed
about: Fixed CSS animation errors and invalid syntax causing browser console warnings
Description
This PR fixes multiple CSS-related issues that were causing browser console warnings and animation errors:
oklch()color functions with RGB equivalents in CSS custom properties@pluginsyntax: Changed to correct@importsyntax for Tailwind CSS v4@custom-variantrule: Eliminated unsupported CSS at-ruleRelated Issue
This PR fixes animation errors and CSS syntax warnings that were appearing in the browser console.
Changes Made
oklch()color functions in CSS custom properties with animatable RGB equivalentsoklch(1 0 0)→rgb(255, 255, 255)oklch(0.141 0.005 285.823)→rgb(36, 36, 36)@plugin 'tailwindcss-animate'to@import 'tailwindcss-animate'@custom-variant dark (&:is(.dark *))which is not valid CSS syntaxTesting Performed
.darkclass selectorChecklist
Technical Details
Files Modified:
src/styles/globals.css: Updated CSS custom properties and syntaxImpact: