Make tab bar sticky when at top position

Add position: sticky, top: 0, z-index and background to tab container
so it stays visible while scrolling (bottom position already uses fixed)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-23 23:35:59 +01:00
parent 7ca882879b
commit 06e354e8ec

View File

@@ -35,6 +35,10 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
padding: 0.75rem; padding: 0.75rem;
position: sticky;
top: 0;
z-index: 100;
background: var(--color-bg-main);
} }
/* Ensure no extra margin from body */ /* Ensure no extra margin from body */