aboutsummaryrefslogtreecommitdiff
path: root/src/scss/objects
diff options
context:
space:
mode:
Diffstat (limited to 'src/scss/objects')
-rw-r--r--src/scss/objects/_container.scss4
-rw-r--r--src/scss/objects/_grid.scss8
-rw-r--r--src/scss/objects/_list.scss9
-rw-r--r--src/scss/objects/_type.scss10
4 files changed, 22 insertions, 9 deletions
diff --git a/src/scss/objects/_container.scss b/src/scss/objects/_container.scss
index 2b28286..24d02c4 100644
--- a/src/scss/objects/_container.scss
+++ b/src/scss/objects/_container.scss
@@ -28,7 +28,9 @@ $iota-objs-container-gutter-default: $iota-global-gutter-default;
28 * Type: Map 28 * Type: Map
29 */ 29 */
30 30
31$iota-objs-container-gutter-extra: (); 31$iota-objs-container-gutter-extra: (
32 'gutter-x3': $baseline-x3
33);
32 34
33 35
34/** 36/**
diff --git a/src/scss/objects/_grid.scss b/src/scss/objects/_grid.scss
index 93a3c48..8a18397 100644
--- a/src/scss/objects/_grid.scss
+++ b/src/scss/objects/_grid.scss
@@ -25,7 +25,7 @@ $iota-objs-grid-rev: false;
25 * Default gutter size. Use a number for a single size or 25 * Default gutter size. Use a number for a single size or
26 * a map for a responsive size. 26 * a map for a responsive size.
27 * 27 *
28 * Type: Number / Map 28 * Type: Number / Map
29 */ 29 */
30 30
31$iota-objs-grid-gutter-default: $iota-global-gutter-default; 31$iota-objs-grid-gutter-default: $iota-global-gutter-default;
@@ -42,12 +42,14 @@ $iota-objs-grid-gutter-default: $iota-global-gutter-default;
42 * Type: Map 42 * Type: Map
43 */ 43 */
44 44
45$iota-objs-grid-gutter-extra: (); 45$iota-objs-grid-gutter-extra: (
46 'gutter-x4': $baseline-x4
47);
46 48
47 49
48/** 50/**
49 * Enable / Disable flexbox on grid. 51 * Enable / Disable flexbox on grid.
50 * 52 *
51 * Type: Boolean 53 * Type: Boolean
52 */ 54 */
53 55
diff --git a/src/scss/objects/_list.scss b/src/scss/objects/_list.scss
index 7e91ef1..e3c3aa1 100644
--- a/src/scss/objects/_list.scss
+++ b/src/scss/objects/_list.scss
@@ -16,7 +16,7 @@ $iota-objs-list-aligned: false;
16 * Type: Boolean 16 * Type: Boolean
17 */ 17 */
18 18
19$iota-objs-list-block: false; 19$iota-objs-list-block: true;
20 20
21 21
22/** 22/**
@@ -26,7 +26,7 @@ $iota-objs-list-block: false;
26 * Type: Boolean 26 * Type: Boolean
27 */ 27 */
28 28
29$iota-objs-list-inline: false; 29$iota-objs-list-inline: true;
30 30
31 31
32/** 32/**
@@ -59,7 +59,10 @@ $iota-objs-list-gutter-default: $iota-global-gutter-default;
59 * Type: Map 59 * Type: Map
60 */ 60 */
61 61
62$iota-objs-list-gutter-extra: (); 62$iota-objs-list-gutter-extra: (
63 'gutter-x3': $baseline-x3,
64 'gutter-x4': $baseline-x4
65);
63 66
64 67
65/** 68/**
diff --git a/src/scss/objects/_type.scss b/src/scss/objects/_type.scss
index ed74bde..43a2b9f 100644
--- a/src/scss/objects/_type.scss
+++ b/src/scss/objects/_type.scss
@@ -1,6 +1,6 @@
1/** 1/**
2 * Allows you to change the default type name from .o-type-. 2 * Allows you to change the default type name from .o-type-.
3 * 3 *
4 * Type: String 4 * Type: String
5 */ 5 */
6 6
@@ -13,7 +13,13 @@ $iota-objs-type-namespace: 'type-';
13 * Type: Map 13 * Type: Map
14 */ 14 */
15 15
16$iota-objs-type-sizes: (); 16$iota-objs-type-sizes: (
17 16: $type-16,
18 20: $type-20,
19 28: $type-28,
20 35: $type-35,
21 80: $type-80
22);
17 23
18 24
19@import 'node_modules/iotacss/objects/type'; 25@import 'node_modules/iotacss/objects/type';