Fix: ticket cards now visible below 1400px - move hide rule to media query

This commit is contained in:
2026-01-31 11:38:18 -05:00
parent 79706f790d
commit 23da1ef421

View File

@@ -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 {