mod-base 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@import './variables';
|
|
2
|
+
|
|
1
3
|
/**
|
|
2
4
|
* Visually hide an element while still allowing it to be
|
|
3
5
|
* exposed to assistive technologies
|
|
@@ -48,8 +50,12 @@
|
|
|
48
50
|
display: block;
|
|
49
51
|
}
|
|
50
52
|
|
|
51
|
-
body
|
|
52
|
-
|
|
53
|
+
body {
|
|
54
|
+
font-family: $base-font-family;
|
|
55
|
+
|
|
56
|
+
&.no-scroll {
|
|
57
|
+
overflow: hidden;
|
|
58
|
+
}
|
|
53
59
|
}
|
|
54
60
|
|
|
55
61
|
@include breakpoint-sm {
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
$base-
|
|
1
|
+
@import './colors';
|
|
2
|
+
|
|
3
|
+
$base-body-color: $color-charcoal8 !default;
|
|
4
|
+
$base-font-family: 'Roboto', sans-serif !default;
|
|
5
|
+
$base-transition: all .15s ease-in-out !default;
|