Created
April 30, 2023 07:49
-
-
Save ismaelrak/dc876d21a9551babcd78d7ba4d09c9db to your computer and use it in GitHub Desktop.
Folder Architecture SASS
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
sass/ | |
| | |
|– abstracts/ | |
| |– _variables.scss # Sass Variables | |
| |– _functions.scss # Sass Functions | |
| |– _mixins.scss # Sass Mixins | |
| |– _placeholders.scss # Sass Placeholders | |
| | |
|– core/ | |
| |– _reset.scss # Reset/normalize | |
| |– _typography.scss # Typography rules | |
| … # Etc. | |
| | |
|– components/ | |
| |– _buttons.scss # Buttons | |
| |– _carousel.scss # Carousel | |
| |– _cover.scss # Cover | |
| |– _dropdown.scss # Dropdown | |
| … # Etc. | |
| | |
|– layout/ | |
| |– _navigation.scss # Navigation | |
| |– _grid.scss # Grid system | |
| |– _header.scss # Header | |
| |– _footer.scss # Footer | |
| |– _sidebar.scss # Sidebar | |
| |– _forms.scss # Forms | |
| … # Etc. | |
| | |
|– pages/ | |
| |– _home.scss # Home specific styles | |
| |– _contact.scss # Contact specific styles | |
| … # Etc. | |
| | |
|– themes/ | |
| |– _theme.scss # Default theme | |
| |– _admin.scss # Admin theme | |
| … # Etc. | |
| | |
|– vendors/ | |
| |– _bootstrap.scss # Bootstrap | |
| … # Etc. | |
| | |
`– main.scss # Main Sass file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment