-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.scss
116 lines (105 loc) · 2.03 KB
/
variables.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
///
/// Prefix for all grid classes.
///
/// @type string
///
/// @access private
///
$grid-prefix: '' !default;
///
/// Grid gutter length.
/// Must be a pixel value.
///
/// @type Length
///
/// @access private
///
$grid-gutter: 15px !default;
///
/// -----------------------------------------------------------------------------------------------
/// CONTAINER
/// -----------------------------------------------------------------------------------------------
///
///
/// Container's breakpoints list.
///
/// @type List
/// @prop {string} value - css properties
///
/// @access private
///
$containers: (
'xs': (
max-width: 320px
),
'sm': (
max-width: 540px
),
'md': (
max-width: 720px
),
'lg': (
max-width: 960px
),
'xl': (
max-width: 1140px
),
'xxl': (
max-width: 1540px
)
) !default;
///
/// Containers prefix
///
/// @type string
///
/// @access private
///
$containers-prefix: $grid-prefix !default;
///
/// -----------------------------------------------------------------------------------------------
/// ROWS
/// -----------------------------------------------------------------------------------------------
///
///
/// Max columns for basic provided `.row-col-{bp}-{col}` classes.
/// If enabled, recommended value: 6
///
/// @type number|boolean
///
/// @access private
///
$rows-cols-max-columns: false !default;
///
/// Rows prefix
///
/// @type string
///
/// @access private
///
$rows-prefix: $grid-prefix !default;
///
/// -----------------------------------------------------------------------------------------------
/// COLS
/// -----------------------------------------------------------------------------------------------
///
///
/// Number of columns in the grid.
///
/// @type number
///
/// @access private
///
$cols: 12 !default;
///
/// Cols prefix
///
/// @type string
///
/// @access private
///
$cols-prefix: $grid-prefix !default;
$offset-prefix: $grid-prefix !default;
///
/// -----------------------------------------------------------------------------------------------
///