aboutsummaryrefslogtreecommitdiff
path: root/src/scss/utilities/_margin.scss
blob: 4e08dc4d99ee478875c45522a9676d516fb13943 (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
/**
 * Margin default gutter. Use a number for a simple size
 * and a map for responsive.
 *
 * Type: Number / Map
 */

$iota-utils-margin-default: $iota-global-gutter-default;


/**
 * Margin extra gutters.
 *
 * Type: Map
 */

$iota-utils-margin-extra: ();


/**
 * Enables / Disables responsive classes
 *
 * Type: Boolean
 */

$iota-utils-margin-res: false;


/**
 * Breakpoints map. Overrides the breakpoints map only
 * for margin utility.
 *
 * Type: Map
 */

$iota-utils-margin-breakpoints: $iota-global-breakpoints;


/**
 * Namespace classes
 *
 * Type: String
 */

$iota-utils-margin-namespace        : 'm';
$iota-utils-margin-top-name         : 't';
$iota-utils-margin-right-name       : 'r';
$iota-utils-margin-bottom-name      : 'b';
$iota-utils-margin-left-name        : 'l';
$iota-utils-margin-vertical-name    : 'v';
$iota-utils-margin-horizontal-name  : 'h';


@import 'node_modules/iotacss/utilities/margin';