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:
@@ -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 */
|
||||||
|
|||||||
Reference in New Issue
Block a user