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:
parent
1fe927dc17
commit
819b8d9c13
@ -133,11 +133,15 @@
|
|||||||
|
|
||||||
/* Card view */
|
/* Card view */
|
||||||
.contacts-grid {
|
.contacts-grid {
|
||||||
display: grid;
|
display: none;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
|
||||||
gap: var(--spacing-lg);
|
gap: var(--spacing-lg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.contacts-grid.active {
|
||||||
|
display: grid;
|
||||||
|
}
|
||||||
|
|
||||||
.contact-card {
|
.contact-card {
|
||||||
background: var(--surface);
|
background: var(--surface);
|
||||||
border-radius: var(--radius-lg);
|
border-radius: var(--radius-lg);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user