We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb9f339 commit 0c1a8a7Copy full SHA for 0c1a8a7
frontend/src/styles/test.scss
@@ -607,7 +607,10 @@
607
caret-color: transparent;
608
resize: none;
609
overflow: hidden;
610
- white-space: nowrap; // if the text wraps, ctrl backspace will not work on firefox >:|
+ // if the text wraps, ctrl backspace will not work on firefox >:|
611
+ // and holy shit do not use white-space: nowrap here because the hellspawn that is safari
612
+ // is TRIMMING the value on focus when using that (and the input system relies on a leading space)
613
+ text-wrap-mode: nowrap;
614
}
615
616
#capsWarning {
0 commit comments