docmost/apps/client/postcss.config.js

15 lines
343 B
JavaScript
Raw Normal View History

2023-08-08 14:12:15 +01:00
module.exports = {
plugins: {
2023-09-26 03:31:20 +01:00
"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",
},
},
2023-08-08 14:12:15 +01:00
},
2023-09-26 03:31:20 +01:00
};