fix: restore vertical filter layout on mobile and enhance dropdown shadows
Some checks failed
CI / update (push) Failing after 1m10s

Fixed CSS specificity issue where filter-panel classes were preventing vertical stacking on small screens. Also added drop-shadow to all filter dropdowns for improved visual depth.
This commit is contained in:
2026-01-02 22:03:27 +01:00
parent 1cec74fc78
commit 9e0e16aa68
5 changed files with 6 additions and 1 deletions

View File

@@ -142,6 +142,7 @@
background: var(--nord0);
border-radius: 6px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
max-height: 200px;
overflow-y: auto;
z-index: 100;

View File

@@ -96,7 +96,8 @@
display: flex;
}
.filter-panel {
.filter-panel.with-favorites,
.filter-panel.without-favorites {
grid-template-columns: 1fr;
gap: 1rem;
max-width: 600px;

View File

@@ -134,6 +134,7 @@
background: var(--nord0);
border-radius: 6px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
max-height: 200px;
overflow-y: auto;
z-index: 100;

View File

@@ -154,6 +154,7 @@
background: var(--nord0);
border-radius: 6px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
max-height: 200px;
overflow-y: auto;
z-index: 100;

View File

@@ -151,6 +151,7 @@
background: var(--nord0);
border-radius: 6px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
max-height: 200px;
overflow-y: auto;
z-index: 100;