-
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.
- Loading branch information
Showing
7 changed files
with
51 additions
and
49 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
src/assets/scss/abstracts/functions/_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// ABSTRACTS - FUNCTIONS | ||
// CONTAINS | ||
// ================================================= | ||
@use "sass:list"; | ||
|
||
@function contains($list, $item) { | ||
@return list.index($list, $item) != null; | ||
} |
15 changes: 5 additions & 10 deletions
15
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
20 changes: 20 additions & 0 deletions
20
src/assets/scss/abstracts/variables/_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// ABSTRACTS - VARIABLES | ||
// BREAKPOINTS | ||
// ================================================= | ||
|
||
$breakpoints: ( | ||
xs: 480px, | ||
// mobile portrait | ||
sm: 576px, | ||
// mobile landscape | ||
md: 768px, | ||
// tablet portrait | ||
lg: 992px, | ||
// tablet portrait | ||
xl: 1024px, | ||
// tablet landscape | ||
xxl: 1280px, | ||
// laptop | ||
xxxl: 1600px, | ||
// desktop | ||
) !default; |
10 changes: 5 additions & 5 deletions
10
...assets/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
6 changes: 3 additions & 3 deletions
6
src/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,8 +1,8 @@ | ||
// SETTINGS | ||
// ABSTRACTS - VARIABLES | ||
// FONTS | ||
// ------------------ | ||
// ================================================= | ||
|
||
// BRAND | ||
// ================================================= | ||
// ---------------------------------------------------------------------- | ||
$font-brand-1: "Dauphin", "Bradley Hand", sans-serif; | ||
$font-brand-2: "Oxygen", helvetica, cursive; |
This file was deleted.
Oops, something went wrong.
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,12 +1,12 @@ | ||
// PARTIALS SCSS | ||
// ------------------ | ||
// =============================================================================== | ||
|
||
// SETTINGS | ||
// ================================================= | ||
@forward "settings/settings-breakpoints"; | ||
@forward "settings/settings-colors"; | ||
@forward "settings/settings-fonts"; | ||
|
||
// TOOLS | ||
// ================================================= | ||
@forward "tools/tools-media"; | ||
// ABSTRACTS | ||
// ---------------------------------------------------------------------- | ||
@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"; |