mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-06 07:56:28 +08:00
fix: Table scroll shadow in rtl mode (#40441)
* 💄 STYLE: fix Table's scroll shadow in rtl mode
* Revert "💄 STYLE: fix Table's scroll shadow in rtl mode"
This reverts commit 06c9249f70
.
* 💄 STYLE: use logical properties
This commit is contained in:
parent
45b65f7991
commit
cac6d5c42f
@ -32,6 +32,18 @@ const genStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
|
||||
transform: 'rotate(0deg)',
|
||||
},
|
||||
},
|
||||
|
||||
[`${componentCls}-container`]: {
|
||||
'&::before': {
|
||||
insetInlineStart: 'unset',
|
||||
insetInlineEnd: 0,
|
||||
},
|
||||
|
||||
'&::after': {
|
||||
insetInlineStart: 0,
|
||||
insetInlineEnd: 'unset',
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user