-
Notifications
You must be signed in to change notification settings - Fork 0
/
snippets.json
55 lines (40 loc) · 1.91 KB
/
snippets.json
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
{
// flexbox
"display: flex" : "display: flex;",
"display: inline-flex" : "display: inline-flex;",
"flex-direction: row" : "flex-direction: row;",
"flex-direction: row-reverse" : "flex-direction: row-reverse;",
"flex-direction: column" : "flex-direction: column;",
"flex-direction: column-reverse" : "flex-direction: column-reverse;",
"flex-wrap: nowrap" : "flex-wrap: nowrap;",
"flex-wrap: wrap" : "flex-wrap: wrap;",
"flex-wrap: wrap-reverse" : "flex-wrap: wrap-reverse;",
"flex-flow: direction wrap" : "flex-flow: direction wrap;",
"justify-content: flex-start" : "justify-content: flex-start;",
"justify-content: flex-end" : "justify-content: flex-end;",
"justify-content: center" : "justify-content: center;",
"justify-content: space-between" : "justify-content: space-between;",
"justify-content: space-around" : "justify-content: space-around;",
"align-items: flex-start" : "align-items: flex-start;",
"align-items: flex-end" : "align-items: flex-end;",
"align-items: center" : "align-items: center;",
"align-items: baseline" : "align-items: baseline;",
"align-items: stretch" : "align-items: stretch;",
"align-content: flex-start" : "align-content: flex-start;",
"align-content: flex-end" : "align-content: flex-end;",
"align-content: center" : "align-content: center;",
"align-content: space-between" : "align-content: space-between;",
"align-content: space-around" : "align-content: space-around;",
"align-content: stretch" : "align-content: stretch;",
"align-self: auto" : "align-self: auto;",
"align-self: flex-start" : "align-self: flex-start;",
"align-self: flex-end" : "align-self: flex-end;",
"align-self: center" : "align-self: center;",
"align-self: baseline" : "align-self: baseline;",
"align-self: stretch" : "align-self: stretch;",
"order" : "order: $0;",
"flex-grow" : "flex-grow: $0;",
"flex-shrink" : "flex-shrink: $0;",
"flex-basis" : "flex-basis: $0;",
"flex" : "flex: $0;"
}