From d9bae4a853dec82f40bd03edb73e362025293674 Mon Sep 17 00:00:00 2001 From: Yifeng Wang Date: Fri, 10 Mar 2023 09:55:39 +0800 Subject: [PATCH] fix: support min width for workspace list table (#1473) --- packages/component/src/ui/table/styles.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/component/src/ui/table/styles.ts b/packages/component/src/ui/table/styles.ts index daf6bcfba..fa72bb3f8 100644 --- a/packages/component/src/ui/table/styles.ts +++ b/packages/component/src/ui/table/styles.ts @@ -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', };