- Added CSS override to enable scrolling in fixed sidebar - Sidebar now properly scrolls when content exceeds viewport height - All navigation items and social icons are now accessible on short windows - Used local override instead of modifying theme directly 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
323 B
SCSS
16 lines
323 B
SCSS
.app-header-social {
|
|
flex-wrap: wrap;
|
|
a:not(:last-child) {
|
|
margin-right: 0.2em;
|
|
}
|
|
}
|
|
|
|
// Fix sidebar scrolling for smaller viewports
|
|
@media (min-width: 940px) {
|
|
.app-header {
|
|
height: 100vh !important;
|
|
overflow-y: auto !important;
|
|
overflow-x: hidden !important;
|
|
min-height: unset !important;
|
|
}
|
|
} |