Skip to content

Styling

Furkan Demir edited this page Mar 9, 2023 · 2 revisions

General

The project styling foundation is Emotion and Material UI. However, you can find some CSS files in the project.

Global

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.

Component

Every custom component that needs custom CSS is included in a CSS file in its folder.

Example

components
.
└── components/
    └── Apple/
        ├── Apple.module.css # This module CSS only used in the Apple component
        └── index.tsx
Clone this wiki locally