Fix bug in Safari causing textarea to behave weirdly with white-space: nowrap vs pre-wrap

This commit is contained in:
Linus Lee 2020-09-24 08:28:28 -04:00
parent 342fd2e8d6
commit e8549b783a

View File

@ -158,13 +158,14 @@ textarea.editor-input {
font-family: var(--ff-mono); font-family: var(--ff-mono);
font-size: 1em; font-size: 1em;
line-height: 1.3em; line-height: 1.3em;
margin: 0;
padding: .5em 1em; padding: .5em 1em;
border: 0; border: 0;
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
overflow-y: auto; overflow-y: auto;
resize: none; resize: none;
white-space: nowrap; white-space: pre-wrap;
} }
textarea.editor-input { textarea.editor-input {