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
@@ -1,5 +1,9 @@
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
+
3
7
  ## 1.0.8
4
8
 
5
9
  - Adding in the `.no-scroll` class to be global styling for our dialogs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -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.no-scroll {
52
- overflow: hidden;
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 {
@@ -7,7 +7,7 @@
7
7
 
8
8
  @include breakpoint-md {
9
9
  .container {
10
- width: 780px
10
+ width: 750px;
11
11
  }
12
12
  }
13
13
 
@@ -1,3 +1,5 @@
1
- $base-body-color: $color-charcoal8;
2
- $base-font-family: 'Roboto', sans-serif;
3
- $base-transition: all .15s ease-in-out;
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;