mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-13 08:12:32 +10:00
17 lines
395 B
JavaScript
17 lines
395 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
autoprefixer: {},
|
|
"postcss-preset-env": {},
|
|
"postcss-preset-mantine": {},
|
|
"postcss-simple-vars": {
|
|
variables: {
|
|
"mantine-breakpoint-xs": "36em",
|
|
"mantine-breakpoint-sm": "48em",
|
|
"mantine-breakpoint-md": "62em",
|
|
"mantine-breakpoint-lg": "75em",
|
|
"mantine-breakpoint-xl": "88em",
|
|
},
|
|
},
|
|
},
|
|
};
|