From 5090165f719edd329ec80a1bb152fa9fbc513abc Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 13 Jul 2020 11:44:24 +0200 Subject: [PATCH] Hide horizontal scrollbars on Firefox Firefox shows horizontal scrollbars when the member list overflows. --- style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index c0224f5..2f9646b 100644 --- a/style.css +++ b/style.css @@ -15,7 +15,8 @@ body { #buffer-list, #buffer, #connect, #member-list { width: 100%; height: 100%; - overflow: auto; + overflow-x: hidden; + overflow-y: auto; } #buffer-list {