From c37e368dcf82601897a0eb7021e8e06cac7c504e Mon Sep 17 00:00:00 2001 From: af-liu <18264480900@163.com> Date: Tue, 25 Jul 2023 14:16:57 +0800 Subject: [PATCH] fix(table): table select style(#6721) --- components/table/style/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/table/style/index.ts b/components/table/style/index.ts index d5ad893ee7..d3e77be97a 100644 --- a/components/table/style/index.ts +++ b/components/table/style/index.ts @@ -271,13 +271,13 @@ const genTableStyle: GenerateStyle = token => { borderTopColor: 'transparent', '&:first-child': { - borderStartStartRadius: tableRadius, - borderEndStartRadius: tableRadius, + borderStartStartRadius: 0, + borderEndStartRadius: 0, }, '&:last-child': { - borderStartEndRadius: tableRadius, - borderEndEndRadius: tableRadius, + borderStartEndRadius: 0, + borderEndEndRadius: 0, }, }, },