Hello guys! Im trying to set up different font sizes for my headings on small screen sizes.
`export const formsTheme: MantineThemeOverride = {
headings: {
fontFamily: "T-Star",
fontSize: "2.5rem",
[theme.fn.smallerThan("md")]: { // well I cant do this
fontSize: "1.5rem",
},
},
};`
The theme is consumed the normal way:
<MantineProvider withGlobalStyles withNormalizeCSS theme={formsTheme}>
Any ideas on how to achieve this? I want this to apply on a global scale, so updating every <Title> is out of the question.