-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.postcssrc.js
42 lines (41 loc) · 900 Bytes
/
.postcssrc.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
// https://github.com/michael-ciniawsky/postcss-load-config
const path = require('path')
module.exports = {
plugins: {
'postcss-import': {},
'postcss-url': {},
'precss': {},
'postcss-pxtorem': {
rootValue: 37.5,
selectorBlackList: ['no-rem'],
propList: [
'width',
'height',
'font',
'font-size',
'line-height',
'letter-spacing',
'margin',
'margin-top',
'margin-left',
'margin-right',
'margint-bottom',
'padding',
'padding-top',
'padding-left',
'padding-right',
'padding-bottom',
'left',
'right',
'top',
'bottom',
'background',
'min-height',
'max-height',
'min-width',
'max-width'
]
},
autoprefixer: {}
}
}