From feb9c9a1f5392813e334506dbc7715dd2cca9635 Mon Sep 17 00:00:00 2001 From: Spencer14420 <67592325+Spencer14420@users.noreply.github.com> Date: Sat, 23 Nov 2024 13:26:13 -0500 Subject: [PATCH] Hide the button in the top panel when the screen is 550px tall or less (#73) --- dist/css/style.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dist/css/style.css b/dist/css/style.css index 417c7ec..8fc3030 100644 --- a/dist/css/style.css +++ b/dist/css/style.css @@ -373,10 +373,8 @@ h2 { } /* Hide button in top panel for small screen sizes */ -@media (max-width: 600px) and (max-height: 410px), - (min-width: 601px) and (max-width: 700px) and (max-height: 440px), - (min-width: 701px) and (max-height: 475px) { - .top-panel .btn-capanda1 { +@media (max-height: 550px) { + .top-panel button { display: none; } }