From 73556a50929f1add770af1828bf79d5f84dfdf60 Mon Sep 17 00:00:00 2001 From: Andy Smith Date: Thu, 13 Nov 2025 14:34:24 -0600 Subject: [PATCH] Show mobile view regardless of touch type --- app/assets/stylesheets/card-columns.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/card-columns.css b/app/assets/stylesheets/card-columns.css index da9b9b15c..30c9a7ae2 100644 --- a/app/assets/stylesheets/card-columns.css +++ b/app/assets/stylesheets/card-columns.css @@ -45,8 +45,7 @@ min-block-size: 20lh; } - /* Hide on small, fat-finger touch devices */ - @media (hover: none) and (pointer: coarse) and (max-width: 519px) { + @media (max-width: 519px) { display: none; } } @@ -748,7 +747,7 @@ padding-inline: 3vw; /* Hide on larger devices with cursors */ - @media (hover: hover) and (min-width: 520px) { + @media (min-width: 520px) { display: none; }