mirror of
https://github.com/remnawave/frontend.git
synced 2026-05-13 04:09:03 +00:00
19 lines
593 B
JavaScript
19 lines
593 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
'postcss-preset-mantine': {
|
|
autoRem: true
|
|
},
|
|
'postcss-simple-vars': {
|
|
variables: {
|
|
'mantine-breakpoint-xs': '30em',
|
|
'mantine-breakpoint-sm': '40em',
|
|
'mantine-breakpoint-md': '48em',
|
|
'mantine-breakpoint-lg': '64em',
|
|
'mantine-breakpoint-xl': '80em',
|
|
'mantine-breakpoint-2xl': '96em',
|
|
'mantine-breakpoint-3xl': '120em',
|
|
'mantine-breakpoint-4xl': '160em'
|
|
}
|
|
}
|
|
}
|
|
}
|