From b6bc5e1a01af755405624aab69745202d7701f85 Mon Sep 17 00:00:00 2001 From: dillon Date: Mon, 31 Aug 2015 10:46:37 -0700 Subject: [PATCH] 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 --- static/components/scroll-region.less | 1 + 1 file changed, 1 insertion(+) diff --git a/static/components/scroll-region.less b/static/components/scroll-region.less index 9e0ce8f66..0d7e005ef 100644 --- a/static/components/scroll-region.less +++ b/static/components/scroll-region.less @@ -53,6 +53,7 @@ } .scroll-region-content-inner { transform:translate3d(0,0,0); + min-width: 700px; } }