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 b82d9d3
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 b82d9d3

Please sign in to comment.