-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
1 parent
de8596b
commit 3f69064
Showing
24 changed files
with
130 additions
and
626 deletions.
There are no files selected for viewing
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
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* breakpoints */ | ||
// $breakpoints: ( | ||
// sm: 640px, | ||
// md: 768px, | ||
// lg: 1024px, | ||
// xl: 1280px, | ||
// "2xl": 1536px, | ||
// ) !default; | ||
|
||
/* breakpoints */ | ||
$mq-sm: 480px; | ||
$mq-xsm: 640px; | ||
$mq-md: 768px; | ||
$mq-xmd: 991px; | ||
$mq-lg: 1024px; | ||
$mq-xl: 1280px; | ||
$mq-2xl: 1536px; |
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,31 +0,0 @@ | ||
// ----------------------------------------------------------------------------- | ||
// This file contains all application-wide Sass functions. | ||
// ----------------------------------------------------------------------------- | ||
|
||
/// Native `url(..)` function wrapper | ||
/// @param {String} $base - base URL for the asset | ||
/// @param {String} $type - asset type folder (e.g. `fonts/`) | ||
/// @param {String} $path - asset path | ||
/// @return {Url} | ||
@function asset($base, $type, $path) { | ||
@return url($base + $type + $path); | ||
} | ||
|
||
/// Returns URL to an image based on its path | ||
/// @param {String} $path - image path | ||
/// @param {String} $base [$base-url] - base URL | ||
/// @return {Url} | ||
/// @require $base-url | ||
@function image($path, $base: $base-url) { | ||
@return asset($base, "images/", $path); | ||
} | ||
|
||
/// Returns URL to a font based on its path | ||
/// @param {String} $path - font path | ||
/// @param {String} $base [$base-url] - base URL | ||
/// @return {Url} | ||
/// @require $base-url | ||
@function font($path, $base: $base-url) { | ||
@return asset($base, "fonts/", $path); | ||
} | ||
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
@forward "mixins"; | ||
@forward "variables"; | ||
@forward "animations"; | ||
@forward "themes"; | ||
@forward "breakpoints"; |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.