2021-05-30 16:33:27 +08:00
|
|
|
'use strict';
|
|
|
|
|
2023-01-18 15:57:37 +08:00
|
|
|
// '--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)',
|
|
|
|
|
2021-05-30 16:33:27 +08:00
|
|
|
module.exports = {
|
|
|
|
plugins: [
|
|
|
|
require('postcss-import')(),
|
|
|
|
require('postcss-simple-vars')(),
|
|
|
|
require('autoprefixer')(),
|
|
|
|
],
|
|
|
|
};
|