L'ajout de requêtes multimédias dans le matériel makestyle réagit

const styles = theme => ({
  root: {
    backgroundColor: 'blue',
    [theme.breakpoints.up('md')]: {
      backgroundColor: 'red',
    },
  },
});
Gentle Gerenuk