@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 +4 -0
- package/package.json +1 -1
- package/scss/_layout.scss +15 -12
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
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
|