@ulu/frontend 0.0.22 → 0.0.23

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
  # Change Log
2
2
 
3
+ ## Version 0.0.23
4
+
5
+ - Fix mistake introduced in 0.0.22, that broke container css
6
+
3
7
  ## Version 0.0.22
4
8
 
5
9
  - Add in other common component modules
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulu/frontend",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "description": "Modular Sass Theming Library",
5
5
  "browser": "js/index.js",
6
6
  "main": "index.js",
package/scss/_layout.scss CHANGED
@@ -25,19 +25,7 @@ $config: (
25
25
  "z-index-fixed": 1000
26
26
  ) !default;
27
27
 
28
- /// Containers Lookup (use set-containers)
29
- /// @type Map
30
28
 
31
- $containers: (
32
- "container" : (
33
- "width" : 100%,
34
- "max-width" : get("max-width"),
35
- "padding" : (get("margin") get("margin")),
36
- "breakpoints" : null,
37
- "responsive" : false,
38
- "responsive-amount" : 3vw
39
- )
40
- ) !default;
41
29
 
42
30
  /// Change modules $config
43
31
  /// @param {Map} $changes Map of changes
@@ -54,6 +42,21 @@ $containers: (
54
42
  @return utils.require-map-get($config, $name, "layout [config]");
55
43
  }
56
44
 
45
+ /// Containers Lookup (use set-containers)
46
+ /// @type Map
47
+ /// @ignore This needs to be below the methods it uses!
48
+
49
+ $containers: (
50
+ "container" : (
51
+ "width" : 100%,
52
+ "max-width" : get("max-width"),
53
+ "padding" : (get("margin") get("margin")),
54
+ "breakpoints" : null,
55
+ "responsive" : false,
56
+ "responsive-amount" : 3vw
57
+ )
58
+ ) !default;
59
+
57
60
  /// Set layout containers
58
61
  /// - See the $containers variable for example of container properties
59
62
  /// @param {Map} $changes Map of changes