fix(contacts): Ukrywanie widoku kart przy przełączeniu na tabelę

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-01-27 08:59:57 +01:00
parent 1fe927dc17
commit 819b8d9c13

View File

@ -133,11 +133,15 @@
/* Card view */
.contacts-grid {
display: grid;
display: none;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: var(--spacing-lg);
}
.contacts-grid.active {
display: grid;
}
.contact-card {
background: var(--surface);
border-radius: var(--radius-lg);