Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR reorganizes the styles directory structure by moving the styles folder into the shared folder and relocating global.css to the app folder, improving the project's organization and aligning with a feature-sliced design architecture.
Key changes:
- Moved styles from
@/styles/to@/shared/styles/with updated import paths across all components and pages - Relocated global CSS initialization from
main.tsxtoapp/index.tsx - Created a centralized export point for all styles via
src/shared/styles/index.ts
Reviewed Changes
Copilot reviewed 48 out of 51 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/styles/README.md | Removed the old styles directory documentation |
| src/shared/styles/index.ts | Added central export file for all style utilities |
| src/shared/styles/vars.css.ts | Updated font imports to use relative paths |
| src/shared/styles/common.css.ts | Updated sprinkles import to relative path |
| src/app/index.tsx | Added global.css import to App component |
| src/app/global.css.ts | Updated vars import to use new shared/styles path |
| src/main.tsx | Removed global styles import (moved to App) |
| All component/page files | Updated imports from @/styles/* to @/shared/styles |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
작업 내용
styles폴더를shared폴더 안으로 이동global.css를app폴더로 이동