fix(scroll-region): add min-width to scrollable message area. fixes T3442.

Summary: I wasn't sure how much the min-width should be. I cross-checked with Gmail and found that they set a pretty generous min-width. I felt 700px seemed comfortable.

Test Plan: Manually tested. All other tests remain green.

Reviewers: bengotow

Maniphest Tasks: T3442

Differential Revision: https://phab.nylas.com/D1954
This commit is contained in:
dillon 2015-08-31 10:46:37 -07:00
parent a0aaadd91f
commit b6bc5e1a01

View file

@ -53,6 +53,7 @@
} }
.scroll-region-content-inner { .scroll-region-content-inner {
transform:translate3d(0,0,0); transform:translate3d(0,0,0);
min-width: 700px;
} }
} }