-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_sass_flexbox.scss
82 lines (69 loc) · 1.36 KB
/
_sass_flexbox.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
.flex{
display: -moz-box;
display: -ms-flexbox;
display: flex;
display: -webkit-flex;
flex: 1;
-webkit-flex: 1;
}
.flex-row{
display: -moz-box;
display: -ms-flexbox;
display: flex;
display: -webkit-flex;
flex-direction: row;
-webkit-flex-direction: row;
}
///yo
.flex-col{
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
-webkit-flex-direction: column;
}
.flex-main-start{
justify-content: flex-start;
-webkit-justify-content: flex-start;
}
.flex-main-center{
-webkit-justify-content: center;
justify-content: center;
}
.flex-main-end{
justify-content: flex-end;
-webkit-justify-content: flex-end;
}
.flex-main-between{
justify-content: space-between;
-webkit-justify-content: space-between;
}
.flex-main-around{
justify-content: space-around;
-webkit-justify-content: space-around;
}
.flex-second-start{
align-items: flex-start;
-webkit-align-items: flex-start;
}
.flex-second-center{
align-items: center;
-webkit-align-items: center;
}
.flex-second-end{
align-items: flex-end;
-webkit-align-items: flex-end;
}
.flex-second-around{
align-items: space-around;
-webkit-align-items: space-around;
}
.flex-second-between{
align-items: space-between;
-webkit-align-items: space-between;
}
.flex-wrap{
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
}