feat(frontend): make header and filter bar sticky on scroll

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Masahiko AMANO 2026-04-05 13:32:35 +03:00
parent aebf7127af
commit 6fa340b17c
2 changed files with 6 additions and 0 deletions

View File

@ -169,6 +169,9 @@
display: flex;
flex-direction: column;
gap: 8px;
position: sticky;
top: 43px; /* header height */
z-index: 9;
}
.active {

View File

@ -77,6 +77,9 @@
border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 15%, transparent);
gap: 6px;
flex-shrink: 0;
position: sticky;
top: 0;
z-index: 10;
}
.select-btn {