mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-06 20:10:12 +02:00
17 lines
457 B
JavaScript
17 lines
457 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
'postcss-preset-mantine': {},
|
|
'postcss-simple-vars': {
|
|
variables: {
|
|
'breakpoint-xs': '36em',
|
|
'breakpoint-sm': '48em',
|
|
'breakpoint-md': '62em',
|
|
'breakpoint-lg': '75em',
|
|
'breakpoint-xl': '88em',
|
|
'breakpoint-2xl': '120em',
|
|
'breakpoint-3xl': '160em',
|
|
},
|
|
},
|
|
},
|
|
};
|