mobile: fix android toolbar hidden behind keyboard on android 15

This commit is contained in:
Ammar Ahmed
2025-06-20 14:48:45 +05:00
committed by Ammar Ahmed
parent 0078d509c5
commit 2440e28168

View File

@@ -44,10 +44,12 @@ export default function TiptapEditorWrapper(props: {
display: props.settings.noToolbar ? "none" : "flex", display: props.settings.noToolbar ? "none" : "flex",
overflowY: "hidden", overflowY: "hidden",
minHeight: "50px", minHeight: "50px",
position: "absolute", ...(globalThis.__PLATFORM__ === "ios" && {
bottom: 0, position: "absolute",
left: 0, bottom: 0,
right: 0 left: 0,
right: 0
})
}} }}
editor={editor} editor={editor}
location="bottom" location="bottom"