CSS: Increase size of contenteditable area

This commit is contained in:
Richard Hansen 2021-03-06 16:02:04 -05:00 committed by John McLear
parent 404486069c
commit 926f0fcefb

View file

@ -37,6 +37,11 @@ html.outer-editor, html.inner-editor {
white-space: normal; white-space: normal;
word-wrap: break-word; word-wrap: break-word;
overflow-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 { #innerdocbody, #sidediv {