fix(web): css in mobile (#1731)

This commit is contained in:
Himself65
2023-03-28 14:42:30 -05:00
committed by GitHub
parent 5faa2760cd
commit 6917d2100f
3 changed files with 19 additions and 1 deletions

View File

@@ -11,6 +11,9 @@ export const StyledTable = styled('table')<{ tableLayout: 'auto' | 'fixed' }>(
minWidth: '600px',
borderCollapse: 'separate',
borderSpacing: '0',
[theme.breakpoints.down('sm')]: {
minWidth: 'unset',
},
};
}
);