From 819b8d9c137a63c26886685eb75c690246ff3044 Mon Sep 17 00:00:00 2001 From: Maciej Pienczyn Date: Tue, 27 Jan 2026 08:59:57 +0100 Subject: [PATCH] =?UTF-8?q?fix(contacts):=20Ukrywanie=20widoku=20kart=20pr?= =?UTF-8?q?zy=20prze=C5=82=C4=85czeniu=20na=20tabel=C4=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- templates/contacts/list.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/contacts/list.html b/templates/contacts/list.html index 1c575c0..888e1aa 100644 --- a/templates/contacts/list.html +++ b/templates/contacts/list.html @@ -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);