add breakpoints postcss

This commit is contained in:
jeffvli
2025-09-21 20:22:55 -07:00
parent a137de612a
commit 953f07faa8
2 changed files with 12 additions and 0 deletions
+1
View File
@@ -112,6 +112,7 @@
"node-mpv": "github:jeffvli/Node-MPV#32b4d64395289ad710c41d481d2707a7acfc228f",
"overlayscrollbars": "^2.11.1",
"overlayscrollbars-react": "^0.5.6",
"postcss-simple-vars": "^7.0.1",
"qs": "^6.14.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
+11
View File
@@ -1,5 +1,16 @@
module.exports = {
plugins: {
'postcss-preset-mantine': {},
'postcss-simple-vars': {
variables: {
'breakpoint-xs': '36em',
'breakpoint-sm': '48em',
'breakpoint-md': '62em',
'breakpoint-lg': '75em',
'breakpoint-xl': '88em',
'breakpoint-2xl': '120em',
'breakpoint-3xl': '160em',
},
},
},
};