-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcssconfig.json
47 lines (47 loc) · 1.12 KB
/
cssconfig.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
{
"pretty": false,
"outputFile": "assets/app.css",
"inputDirectories": [
"styles/"
],
"converters": [
{
"matchProperty": "$size",
"argumentCount": 2,
"output": {
"width": "$1",
"height": "$2"
}
},
{
"matchProperty": "$size",
"argumentCount": 1,
"output": {
"width": "$1",
"height": "$1"
}
},
{
"matchProperty": "$location",
"argumentCount": 2,
"output": {
"left": "$1",
"top": "$2"
}
},
{
"matchProperty": "$location",
"argumentCount": 1,
"output": {
"left": "$1",
"top": "$1"
}
}
],
"atRulesRewrites": {
"media mobile": "media (max-width: 700px)",
"media tablet": "media (max-width: 1200px)",
"media desktop": "media (max-width: 1980px)",
"media ultrawide": "media (min-width: 1981px)"
}
}