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:
Danial Soheili 2023-01-29 16:16:13 +03:30 committed by GitHub
parent 45b65f7991
commit cac6d5c42f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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',
},
},
},
};
};