mirror of https://github.com/prometheus/prometheus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
343 B
15 lines
343 B
9 months ago
|
module.exports = {
|
||
|
plugins: {
|
||
|
'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',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|