79488625

Date: 2025-03-06 08:09:59
Score: 1
Natty:
Report link

How about setting the fontSize value to a string - "1rem" or percentage "77%", or even from the MUI docs try setting with media-queries, kind of extedning what you've began:

theme.typography = {
  fontSize: '1.2rem',
  '@media (min-width:600px)': {
    fontSize: '1.5rem',
  },
  [theme.breakpoints('md')]: {
    fontSize: '2.4rem',
  },
};
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Eksempelvis