fix(composer): Wrap composer instead of allowing overflow-x

This commit is contained in:
Ben Gotow 2016-09-28 17:39:39 -07:00
parent 3940a0abbd
commit 6fad7a9ceb

View file

@ -12,6 +12,9 @@
div[contenteditable], .contenteditable {
flex: 1;
// Subtle: overflow is required to make the composer wrap
// instead of scroll when you type a very long "word" / url.
overflow-x: hidden;
a:hover {
cursor: text;
}