Set white-space property to nowrap on editor lines

Allows inline-block elements adding to the line to no
be wrapped when the window is resized.

Closes #211
This commit is contained in:
Kevin Sawicki
2013-01-30 17:54:16 -08:00
parent 45dfea0559
commit 9a2db26393

View File

@@ -104,3 +104,7 @@
pointer-events: none;
z-index: -1;
}
.editor .line {
white-space: nowrap;
}