We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80cad1d commit fd38348Copy full SHA for fd38348
src/mui.tsx
@@ -26,8 +26,11 @@ export function getMuiDsfrThemeOptions(params: { isDark: boolean }): ThemeOption
26
"borderRadius": 0
27
},
28
"breakpoints": {
29
- "unit": breakpointValuesUnit,
30
- "values": breakpointValues
+ //"unit": breakpointValuesUnit,
+ "unit": "px",
31
+ "values": Object.fromEntries(
32
+ Object.entries(breakpointValues).map(([key, value]) => [key, value * 16])
33
+ ) as any
34
35
"palette": {
36
"mode": isDark ? "dark" : "light",
0 commit comments