From 23da1ef4213612d38d36e074293473c0baacae0a Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Sat, 31 Jan 2026 11:38:18 -0500 Subject: [PATCH] Fix: ticket cards now visible below 1400px - move hide rule to media query --- assets/css/dashboard.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css index 88e06f7..b8a8dc8 100644 --- a/assets/css/dashboard.css +++ b/assets/css/dashboard.css @@ -1566,9 +1566,11 @@ button:active { transform: translateY(-2px); } -/* ===== RESPONSIVE TICKET CARDS - Hidden on desktop ===== */ -.ticket-cards { - display: none; +/* ===== RESPONSIVE TICKET CARDS - Hidden on desktop (1400px+) ===== */ +@media (min-width: 1400px) { + .ticket-cards { + display: none; + } } .ticket-card-empty {