-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(sass): rename and move files from
settings
and tools
fol…
…ders to `abstracts` folder Steps: - Rename `settings` folder to `variables`. - Move the `contains` function to `abstracts/functions/` and updated imports to reflect this change. - Move the `media` mixin to `abstracts/mixins/` and updated imports to reflect this change. - Move `variables`, `functions`, and `mixins` to the `abstracts` folder for clearer organization. - Update the main `styles.scss` to import all the necessary partials from the `abstracts` folder using `@forward`. - Align the title of the header comments with the respective folder names for clarity. - Separate the sections of sass variables by comments
- Loading branch information
1 parent
c0a3504
commit aa844ab
Showing
6 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
src/assets/scss/tools/_tools-contains.scss → ...ctions/_abstracts-functions-contains.scss
This file contains 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
6 changes: 3 additions & 3 deletions
6
src/assets/scss/tools/_tools-media.scss → ...racts/mixins/_abstracts-mixins-media.scss
This file contains 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
2 changes: 1 addition & 1 deletion
2
.../scss/settings/_settings-breakpoints.scss → ...les/_abstracts-variables-breakpoints.scss
This file contains 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
2 changes: 1 addition & 1 deletion
2
...ssets/scss/settings/_settings-colors.scss → ...ariables/_abstracts-variables-colors.scss
This file contains 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
2 changes: 1 addition & 1 deletion
2
...assets/scss/settings/_settings-fonts.scss → ...variables/_abstracts-variables-fonts.scss
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// SETTINGS - VARIABLES | ||
// ABSTRACTS - VARIABLES | ||
// FONTS | ||
// ================================================= | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
// PARTIALS SCSS | ||
// =============================================================================== | ||
|
||
// SETTINGS | ||
// ABSTRACTS | ||
// ---------------------------------------------------------------------- | ||
@forward "settings/settings-breakpoints"; | ||
@forward "settings/settings-colors"; | ||
@forward "settings/settings-fonts"; | ||
|
||
// TOOLS | ||
// ---------------------------------------------------------------------- | ||
@forward "tools/tools-contains"; | ||
@forward "tools/tools-media"; | ||
@forward "abstracts/functions/abstracts-functions-contains"; | ||
// ------------------- | ||
@forward "abstracts/mixins/abstracts-mixins-media"; | ||
// ------------------- | ||
@forward "abstracts/variables/abstracts-variables-breakpoints"; | ||
@forward "abstracts/variables/abstracts-variables-colors"; | ||
@forward "abstracts/variables/abstracts-variables-fonts"; |