- Notifications
You must be signed in to change notification settings - Fork12
Refactor global styles and remove unused assets#678
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Moved global body styles from index.css to App.module.css and removed index.css import from main.tsx. Deleted unused CSS files, Home.module.css, and several SVG assets from the stories/assets directory to clean up the codebase.
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.
Pull Request Overview
This PR refactors global styles by consolidating body styles into a single location and removes unused CSS files and assets to clean up the codebase.
- Moved global body styles from index.css to App.module.css using
:global()selector - Removed the index.css import from main.tsx and deleted unused CSS files
- Deleted unused Home.module.css file containing component styles
Reviewed Changes
Copilot reviewed 5 out of 13 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/main.tsx | Removed index.css import |
| src/index.css | Deleted entire file containing global body styles |
| src/App.module.css | Added global body styles using:global() selector |
| src/App.css | Deleted empty CSS file |
| src/styles/Home.module.css | Deleted unused component styles file |
Tip: Customize your code reviews with copilot-instructions.md.Create the file orlearn how to get started.
Uh oh!
There was an error while loading.Please reload this page.
vercelbot commentedSep 24, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
The latest updates on your projects. Learn more aboutVercel for GitHub.
|
Moved global body styles from index.css to App.module.css and removed index.css import from main.tsx. Deleted unused CSS files, Home.module.css, and several SVG assets from the stories/assets directory to clean up the codebase.