editor: fix scroll for tables in mobile

Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com>
This commit is contained in:
01zulfi
2025-12-18 10:20:10 +05:00
parent fbaba8ebe8
commit 5171b2e5e2

View File

@@ -119,7 +119,15 @@ export function TableComponent(
</SimpleBar>
</DesktopOnly>
<MobileOnly>
<div dir={textDirection}>
<div
dir={textDirection}
style={{
overflowY: "hidden",
overflowX: "auto",
WebkitOverflowScrolling: "touch",
maxWidth: "100%"
}}
>
<table
ref={(ref) => {
forwardRef?.(ref);