Merge pull request #9068 from streetwriters/editor/fix-scroll-mobile-table

editor: fix scroll for tables in mobile
This commit is contained in:
Abdullah Atta
2025-12-18 11:34:29 +05:00
committed by GitHub

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);