Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dewittn/hugo-html5up-alpha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNelson/Roberto <git@nelsonroberto.com>2022-02-16 00:28:48 +0300
committerNelson/Roberto <git@nelsonroberto.com>2022-02-16 00:28:48 +0300
commit5e2513cb21f0c37c09163fbc9052ea9e5528e793 (patch)
treea909ba0a893986254ea79d80e9aa58a645dc0b3c
parentc65786671a05b3ee14ebefd175340c13db6d7faa (diff)
Added !global back in SCSS
-rw-r--r--assets/sass/libs/_breakpoints.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/sass/libs/_breakpoints.scss b/assets/sass/libs/_breakpoints.scss
index e547272..c5301d8 100644
--- a/assets/sass/libs/_breakpoints.scss
+++ b/assets/sass/libs/_breakpoints.scss
@@ -4,14 +4,14 @@
/// Breakpoints.
/// @var {list}
- $breakpoints: ();
+ $breakpoints: () !global;
// Mixins.
/// Sets breakpoints.
/// @param {map} $x Breakpoints.
@mixin breakpoints($x: ()) {
- $breakpoints: $x ;
+ $breakpoints: $x !global;
}
/// Wraps @content in a @media block targeting a specific orientation.