mod-base 1.0.8-beta.3 → 1.0.9-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,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.9
|
|
4
|
+
|
|
5
|
+
- `.container` width for `breakpoint-md` should have always been set to 750px — not 780px; also setting base font family for body
|
|
6
|
+
|
|
7
|
+
## 1.0.8
|
|
8
|
+
|
|
9
|
+
- Adding in the `.no-scroll` class to be global styling for our dialogs
|
|
10
|
+
|
|
3
11
|
## 1.0.0
|
|
4
12
|
|
|
5
13
|
- Initial setup for our new `mod-base`; Removing all things related to bootstrap and components; This will just house global icon fonts, breakpoints, colors, mixins, and our dark mode template.
|
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,6 +50,14 @@
|
|
|
48
50
|
display: block;
|
|
49
51
|
}
|
|
50
52
|
|
|
53
|
+
body {
|
|
54
|
+
font-family: $base-font-family;
|
|
55
|
+
|
|
56
|
+
&.no-scroll {
|
|
57
|
+
overflow: hidden;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
51
61
|
@include breakpoint-sm {
|
|
52
62
|
.visible-sm-up,
|
|
53
63
|
.visible-sm {
|