summaryrefslogtreecommitdiffhomepage
path: root/frontend/postcss.config.cjs
blob: e817f567beaf097daf0c1eea934d4230ee6a6cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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",
      },
    },
  },
};