From 926f0fcefb5a368bdcc3f030475de37bf47adc38 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Sat, 6 Mar 2021 16:02:04 -0500 Subject: [PATCH] CSS: Increase size of contenteditable area --- src/static/css/iframe_editor.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/static/css/iframe_editor.css b/src/static/css/iframe_editor.css index 156eaff6a..912174411 100644 --- a/src/static/css/iframe_editor.css +++ b/src/static/css/iframe_editor.css @@ -37,6 +37,11 @@ html.outer-editor, html.inner-editor { white-space: normal; word-wrap: break-word; overflow-wrap: break-word; + /* + * Make the contenteditable area at least as big as the screen so that mobile + * users can tap anywhere to bring up their device's keyboard. + */ + min-height: 100vh; } #innerdocbody, #sidediv {