aboutsummaryrefslogtreecommitdiff
path: root/src/scss/objects/_container.scss
blob: 24d02c47157a7fedc42c51a1618c7d0d145c19ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
 * Allows you to change the default container name
 * from .o-container.
 *
 * Type: String
 */

$iota-objs-container-namespace: 'container';


/**
 * Allows you to specify the default set of padding
 * left and right of your container. You can use a
 * map in case you would like to specify responsive
 * gutter sizes.
 *
 * Type: Number / List / Map
 */

$iota-objs-container-gutter-default: $iota-global-gutter-default;


/**
 * Allows you to specify more sets of padding left and
 * right of your container. You can use a nested map in
 * case you would like to specify responsive gutter sizes.
 *
 * Type: Map
 */

$iota-objs-container-gutter-extra: (
  'gutter-x3': $baseline-x3
);


/**
 * Allows you to specify the default max-width of your
 * container. You can use a map in case you would like
 * to specify a responsive size.
 *
 * Type: String / Map
 */

$iota-objs-container-size-default: 1000px;


/**
 * Allows you to specify more sets of max-width for your
 * container. You can use a nested map in case you would
 * like to specify a responsive size.
 *
 * Type: Map
 */

$iota-objs-container-size-extra: ();


@import 'node_modules/iotacss/objects/container';