From d6a090e1a8402a42028e75a43b97a4eaccf52ce3 Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Sat, 26 Dec 2020 15:50:09 +0100 Subject: [PATCH] Hide "Edit" and "More" buttons in reviewer bottom bar, if window width is too small --- qt/aqt/data/web/css/reviewer-bottom.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qt/aqt/data/web/css/reviewer-bottom.scss b/qt/aqt/data/web/css/reviewer-bottom.scss index e7a414552..d9fa6c4ee 100644 --- a/qt/aqt/data/web/css/reviewer-bottom.scss +++ b/qt/aqt/data/web/css/reviewer-bottom.scss @@ -20,6 +20,10 @@ button { .stat { padding-top: 5px; + + @media (max-width: 583px) { + display: none; + } } .stat2 { @@ -78,3 +82,4 @@ button { border-top-color: var(--faint-border); } } +