-
Notifications
You must be signed in to change notification settings - Fork 2
/
_settings.core.scss
69 lines (24 loc) · 990 Bytes
/
_settings.core.scss
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
59
60
61
62
63
64
65
66
67
68
69
// iotaCSS Core Settings
// Defines that iota core settings has been loaded
$iota-settings-core: true;
// Defines the default iota columns
$iota-global-columns: 2, 3, 6 !default;
// Defines the iota default namespaces
$iota-global-objects-namespace : 'o-' !default;
$iota-global-utilities-namespace : 'u-' !default;
$iota-global-components-namespace : 'c-' !default;
// Defines the default spacing size
$iota-global-gutter-default: 10px !default;
// Enables flexbox across the app
$iota-global-flex: false !default;
// Enables rtl across the app
$iota-global-rtl: false !default;
// Defines iotaCSS default breakpoints
$iota-global-breakpoints: (
sm : "screen and ( min-width: 768px )",
md : "screen and ( min-width: 1000px )"
) !default;
// Defines the default breakpoint separator
$iota-global-breakpoint-separator: \@ !default;
// Defines the default delimiter for Size, Push and Pull utilities
$iota-global-delimiter: \/ !default;