-
Notifications
You must be signed in to change notification settings - Fork 0
/
scss.json
115 lines (106 loc) · 3.12 KB
/
scss.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
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
{
// Place your snippets for scss here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"Add Snippet": {
"prefix": "snippet",
"body": [
"\"Add Snippet\": { ",
"\"prefix\": \"snippet\",",
" \"body\": [",
" \"$0\" ",
" ], ",
" \"description\": \"Add a new region to the SCSS file\"",
"}"
],
"description": "Add a new snippet template"
},
"Add Region": {
"prefix": "region",
"body": [
"/* #region ${1:regionname} */",
"$0",
"/*#endregion*/"
],
"description": "Add a new region to the SCSS file"
},
"Add Centerflex Mixin": {
"prefix": "centerflex",
"body": [
"@include centerflex(row, wrap, center, center);"
],
"description": "Add a new region to the SCSS file"
},
"Add Mobile Media Breakpoint": {
"prefix": "mediamobile",
"body": [
"/* Mobile */",
"@media (max-width: 480px) {",
"$0",
"}"
],
"description": "Add a new media breakpoint"
},
"Add Tablet Media Breakpoint": {
"prefix": "mediatablet",
"body": [
"/* Tablet */",
"@media (min-width: 481px) and (max-width: 768px)",
"$0",
"}"
],
"description": "Add a new media breakpoint"
},
"Add Notebook Media Breakpoint": {
"prefix": "medianotebook",
"body": [
"/* Notebook */",
"@media (min-width: 769px) and (max-width: 1024px) {",
"$0",
"}"
],
"description": "Add a new media breakpoint"
},
"Add Desktop Media Breakpoint": {
"prefix": "mediandesktop",
"body": [
"/* Desktop */",
"@media (min-width: 1201px) {",
"$0",
"}"
],
"description": "Add a new media breakpoint"
},
"Add All Media Breakpoint": {
"prefix": "media",
"body": [
"/* Mobile */",
"@media (max-width: 480px) {",
"$0",
"}",
"/* Tablet */",
"@media (min-width: 481px) and (max-width: 768px) {",
"",
"}",
"/* Notebook */",
"@media(min-width: 769px) and (max-width: 1024px) {",
"",
"}",
"/* Desktop */",
"@media (min-width: 1201px) {",
"",
"}",
],
"description": "Add a new media breakpoint"
},
}