-
Notifications
You must be signed in to change notification settings - Fork 0
/
atomizer.rules.js
57 lines (56 loc) · 1.25 KB
/
atomizer.rules.js
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
module.exports = [
{
'type': 'pattern',
'name': 'Grid Template Column',
'matcher': 'Gtc',
'allowParamToValue': true,
'styles': {
'grid-template-columns': '$0 $1 $2 $3 $4 $5 $6 $7 $8 $9'
}
},
{
'type': 'pattern',
'name': 'Grid Template Column With Reapeat',
'matcher': 'Gtcr',
'allowParamToValue': true,
'styles': {
'grid-template-columns': 'repeat($0, 1fr)'
}
},
{
'type': 'pattern',
'name': 'Grid/Flex Gap',
'matcher': 'Gap',
'allowParamToValue': true,
'styles': {
'gap': '$0'
}
},
{
'type': 'pattern',
'name': 'Grid Row',
'matcher': 'Gr',
'allowParamToValue': true,
'styles': {
'grid-row': '$0/$1'
}
},
{
'type': 'pattern',
'name': 'Grid Column',
'matcher': 'Gc',
'allowParamToValue': true,
'styles': {
'grid-column': '$0/$1'
}
},
{
'type': 'pattern',
'name': 'Grid Column Start',
'matcher': 'Gcstart',
'allowParamToValue': true,
'styles': {
'grid-column-start': '$0'
}
},
]