Skip to content

Commit

Permalink
Fix scrolling glitch due to mui/material-ui#7466
Browse files Browse the repository at this point in the history
  • Loading branch information
shadanan committed May 26, 2020
1 parent 63dd3a4 commit d1d5802
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/XAirMixer.tsx
Expand Up @@ -6,6 +6,7 @@ import XAirChannel from "./XAirChannel";
const useStyles = makeStyles((theme) => ({
root: {
padding: theme.spacing(),
paddingRight: 0,
},
}));

Expand All @@ -24,7 +25,7 @@ export default function XAirMixer({ mixer }: MixerProps) {
}, [xair]);

return (
<Grid container spacing={1} className={classes.root}>
<Grid container spacing={1} xs={12} className={classes.root}>
<Grid item xs={12} md={6} lg={4} xl={3}>
<XAirChannel
xair={xair}
Expand Down

0 comments on commit d1d5802

Please sign in to comment.