-
Notifications
You must be signed in to change notification settings - Fork 282
Styling
Furkan Demir edited this page Mar 9, 2023
·
2 revisions
The project styling foundation is Emotion and Material UI. However, you can find some CSS files in the project.
All of the global styling rules can be found in the src/styles
folder. You can edit the global.css
file if you want to edit or add some styles.
Every custom component that needs custom CSS is included in a CSS file in its folder.
components
.
└── components/
└── Apple/
├── Apple.module.css # This module CSS only used in the Apple component
└── index.tsx
todo!