From f2f9640371722d6a8904111d3797b012c58cc980 Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 18 Jan 2023 19:45:04 +0000 Subject: [PATCH] workaround firefox layout bug: three-line toasts get a scrollbar even if it doesn't need one and the width is not adjusted correctly when that happens --- copyparty/web/ui.css | 1 + 1 file changed, 1 insertion(+) diff --git a/copyparty/web/ui.css b/copyparty/web/ui.css index 87f0c0cf..470de681 100644 --- a/copyparty/web/ui.css +++ b/copyparty/web/ui.css @@ -69,6 +69,7 @@ html { #toastb { max-height: 70vh; overflow-y: auto; + padding: 1px; } #toast.scroll #toastb { overflow-y: scroll;