mod-base 1.0.9-beta.1 → 1.0.10-beta.1
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
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.10
|
|
4
|
+
- Can't define font-family as properties are being merged together during the build process & is not syncing correctly
|
|
5
|
+
|
|
3
6
|
## 1.0.9
|
|
4
7
|
|
|
5
8
|
- `.container` width for `breakpoint-md` should have always been set to 750px — not 780px; also setting base font family for body
|
package/package.json
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import './variables';
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
* Visually hide an element while still allowing it to be
|
|
5
3
|
* exposed to assistive technologies
|
|
@@ -50,12 +48,8 @@
|
|
|
50
48
|
display: block;
|
|
51
49
|
}
|
|
52
50
|
|
|
53
|
-
body {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
&.no-scroll {
|
|
57
|
-
overflow: hidden;
|
|
58
|
-
}
|
|
51
|
+
body.no-scroll {
|
|
52
|
+
overflow: hidden;
|
|
59
53
|
}
|
|
60
54
|
|
|
61
55
|
@include breakpoint-sm {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
$base-body-color: $color-charcoal8;
|
|
2
|
-
$base-font-family: 'Roboto', sans-serif;
|
|
3
|
-
$base-transition: all .15s ease-in-out;
|
|
1
|
+
$base-body-color: $color-charcoal8 !default;
|
|
2
|
+
$base-font-family: 'Roboto', sans-serif !default;
|
|
3
|
+
$base-transition: all .15s ease-in-out !default;
|