fix: support min width for workspace list table (#1473)

This commit is contained in:
Yifeng Wang 2023-03-10 09:55:39 +08:00 committed by GitHub
parent a0fd890def
commit d9bae4a853
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,7 @@ export const StyledTable = styled('table')<{ tableLayout: 'auto' | 'fixed' }>(
color: theme.colors.textColor,
tableLayout,
width: '100%',
minWidth: '600px',
borderCollapse: 'separate',
borderSpacing: '0',
};