feat: make filters & sorting section collapsible

- Add collapsible filters section to save space on sessions page
- Show/hide toggle button with chevron icons for better UX
- Filters start collapsed by default for cleaner initial view
- Improves mobile experience by reducing vertical space usage
This commit is contained in:
2025-06-28 04:40:30 +02:00
parent 2a033fe639
commit 017634f7a8
5 changed files with 814 additions and 503 deletions

View File

@ -171,12 +171,20 @@
/* Custom text selection colors */
::selection {
background-color: hsl(var(--primary) / 0.2);
color: hsl(var(--foreground));
background-color: hsl(var(--primary) / 0.3);
color: hsl(var(--primary-foreground));
}
::-moz-selection {
background-color: hsl(var(--primary) / 0.2);
color: hsl(var(--foreground));
background-color: hsl(var(--primary) / 0.3);
color: hsl(var(--primary-foreground));
}
/* Line clamp utility */
.line-clamp-2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
}