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

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


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

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


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

$iota-utils-padding-res: false;


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

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


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

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


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