Skip to content

Commit

Permalink
fix: fix array-table dark background (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
yiyunwan authored Aug 16, 2023
1 parent 9dd7104 commit 331898a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/components/src/array-table/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export default genStyleHook('array-table', (token) => {
fontSizeSM,
colorBgBase,
colorBorder,
colorBgContainer,
} = token
const itemCls = `${antCls}-formily-item`

Expand Down Expand Up @@ -53,8 +54,8 @@ export default genStyleHook('array-table', (token) => {
},

[`${componentCls}-sort-helper`]: {
background: '#fff',
border: '1px solid #eee',
background: colorBgContainer,
border: `1px solid ${colorBorder}`,
zIndex: 10,
},
},
Expand Down

0 comments on commit 331898a

Please sign in to comment.