22 lines
530 B
JavaScript
22 lines
530 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = {
|
||
|
plugins: [
|
||
|
require('postcss-import')(),
|
||
|
require('postcss-simple-vars')(),
|
||
|
require('postcss-custom-media')({
|
||
|
importFrom: [
|
||
|
{
|
||
|
customMedia: {
|
||
|
'--breakpoint-not-small': 'screen and (min-width: 30em)',
|
||
|
'--breakpoint-medium':
|
||
|
'screen and (min-width: 30em) and (max-width: 60em)',
|
||
|
'--breakpoint-large': 'screen and (min-width: 60em)',
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
}),
|
||
|
require('autoprefixer')(),
|
||
|
],
|
||
|
};
|