apptension / saas-boilerplate

SaaS Boilerplate - Open Source and free SaaS stack that lets you build SaaS products faster in React, Django and AWS. Focus on essential business logic instead of coding repeatable features!
https://apptension.com/saas-boilerplate
MIT License
2.18k stars 253 forks source link

fix: docs side menu hiding under the navbar #581

Open sdrejkarz opened 4 months ago

sdrejkarz commented 4 months ago

Please check if the PR fulfills these requirements

What kind of change does this PR introduce?

Side mine is no longer hiding on scrolling down on footer Issue

sdrejkarz commented 4 months ago

The only easy-to-go solution I can see here is

aside > div:first-child  {
    height: unset;
    overflow-y: auto;
    overflow-x: hidden;
}

but having two scrollbars (body + sidebar) is not something that we would like to have (or maybe I'm wrong).

Edit: this doesn't work properly either when the scroll is visible.