-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_variables.scss
More file actions
52 lines (45 loc) · 810 Bytes
/
Copy path_variables.scss
File metadata and controls
52 lines (45 loc) · 810 Bytes
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
$gap: 0.5rem !default;
$columns: 12 !default;
$shell-width: 75rem !default;
$shell-gap: 1rem !default;
$small-desktop: 1439px !default;
$tablet-landscape: 1279px !default;
$tablet-portrait: 1023px !default;
$mobile: 767px !default;
$breakpoints: (
xs: (
min: 0,
max: $mobile
),
sm: (
min: $mobile + 1,
max: $tablet-portrait
),
md: (
min: $tablet-portrait + 1,
max: $tablet-landscape
),
lg: (
min: $tablet-landscape + 1,
max: $small-desktop
),
xl: (
min: $small-desktop + 1
)
) !default;
$displays: 'block', 'inline', 'inline-block', 'flex', 'inline-flex' !default;
$alignments: 'center', 'right', 'left', 'justify' !default;
$z-indexes: (
header: (),
main: (
alert: (),
content: (
title,
inner,
overlay
),
aside: ()
),
footer: (),
modal: ()
) !default;