mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-25 22:39:41 +01:00
38 lines
700 B
JavaScript
38 lines
700 B
JavaScript
'use strict';
|
|
|
|
const lost = require('lost');
|
|
const pxtorem = require('postcss-pxtorem');
|
|
const autoprefixer = require('autoprefixer');
|
|
|
|
module.exports = [
|
|
lost(),
|
|
pxtorem({
|
|
rootValue: 16,
|
|
unitPrecision: 5,
|
|
propList: [
|
|
'font',
|
|
'font-size',
|
|
'line-height',
|
|
'letter-spacing',
|
|
'margin',
|
|
'margin-top',
|
|
'margin-left',
|
|
'margin-bottom',
|
|
'margin-right',
|
|
'padding',
|
|
'padding-top',
|
|
'padding-left',
|
|
'padding-bottom',
|
|
'padding-right',
|
|
'border-radius',
|
|
'width',
|
|
'max-width'
|
|
],
|
|
selectorBlackList: [],
|
|
replace: true,
|
|
mediaQuery: false,
|
|
minPixelValue: 0
|
|
}),
|
|
autoprefixer()
|
|
];
|