Skip to content

Commit

Permalink
style: fix Table header radius when has fixed columns
Browse files Browse the repository at this point in the history
  • Loading branch information
afc163 committed Dec 22, 2022
1 parent 8c61261 commit 19842d2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions components/table/style/bordered.tsx
Expand Up @@ -96,6 +96,11 @@ const genBorderedStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
},
},

// https://github.com/ant-design/ant-design/issues/39115#issuecomment-1362314574
[`> ${componentCls}-header`]: {
borderRadius: `${token.borderRadius} ${token.borderRadius} 0 0`,
},

[`
> ${componentCls}-content,
> ${componentCls}-header
Expand Down

0 comments on commit 19842d2

Please sign in to comment.