Skip to content

Commit

Permalink
style: fix Table header radius when has fixed columns (#39723)
Browse files Browse the repository at this point in the history
  • Loading branch information
afc163 committed Dec 22, 2022
1 parent 0c6e872 commit 0e98cb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/table/style/radius.tsx
Expand Up @@ -7,7 +7,8 @@ const genRadiusStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
return {
[`${componentCls}-wrapper`]: {
[componentCls]: {
[`${componentCls}-title`]: {
// https://github.com/ant-design/ant-design/issues/39115#issuecomment-1362314574
[`${componentCls}-title, ${componentCls}-header`]: {
borderRadius: `${tableRadius}px ${tableRadius}px 0 0`,
},

Expand Down

0 comments on commit 0e98cb5

Please sign in to comment.