From 2867e58ad68d03323b4f28241b2ebb2c3b83c52b Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Wed, 26 Mar 2025 14:18:02 -0500 Subject: [PATCH] Hide these on phones for now --- app/assets/stylesheets/filters.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/filters.css b/app/assets/stylesheets/filters.css index 93bfba2d7..d573e179b 100644 --- a/app/assets/stylesheets/filters.css +++ b/app/assets/stylesheets/filters.css @@ -94,8 +94,14 @@ z-index: 1; } -.quick-filter:has(input:not(.default-value):checked) { - .input--select { - --input-background: var(--color-selected); +.quick-filter { + &:has(input:not(.default-value):checked) { + .input--select { + --input-background: var(--color-selected); + } + } + + @media (max-width: 80ch) { + display: none; } }