Fix: ticket cards now visible below 1400px - move hide rule to media query
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user