UNPKG
vite-template-mantine
Version:
latest (1.0.1)
1.0.1
1.0.0
Custom Vite React TypeScript template
vite-template-mantine
/
postcss.config.cjs
15 lines
(14 loc)
•
343 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"
, }, }, }, };