From e94da2fabcdd699930521c30adcaa556fc0bb69e Mon Sep 17 00:00:00 2001 From: Danial Date: Thu, 3 May 2018 16:08:15 +1200 Subject: [PATCH 1/2] Shrink comment box to fit Shrink the comment box down to fit into the provided space. Currently the comment box overhangs. --- src/js/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/js/style.css b/src/js/style.css index 4cd52f2..b5d5566 100644 --- a/src/js/style.css +++ b/src/js/style.css @@ -32,6 +32,10 @@ z-index: 1; } +.enable_better_github_pr .comment-holder { + max-width: 710px; +} + /* react-treeview */ .tree-view_item { From 15309cf0915b6c0ddcc6ec45904fd05d1e77dbd2 Mon Sep 17 00:00:00 2001 From: Danial Date: Tue, 8 May 2018 11:00:52 +1200 Subject: [PATCH 2/2] =?UTF-8?q?710px=20=E2=86=92=20708px?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 710px seemed to still leave a scroll bar on the bottom of the page. 708px looks to be the best option. --- src/js/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/style.css b/src/js/style.css index b5d5566..06e68c2 100644 --- a/src/js/style.css +++ b/src/js/style.css @@ -33,7 +33,7 @@ } .enable_better_github_pr .comment-holder { - max-width: 710px; + max-width: 708px; } /* react-treeview */