streamlit-navigation-bar
streamlit-navigation-bar copied to clipboard
Position the sidebar completely below the navigation bar?
Checklist
- [X] I have read the documentation at the Wiki.
Description
I believe it looks more natural to have the sidebar positioned completely below the navigation bar, as shown in the image below. Would you consider adding an option for this? Thanks!
I created the image by modifying the templates/base.css
file as shown below.
{# make the menu button clickable #}
div[data-testid="stAppViewContainer"] {
pointer-events: none;
top: {{ ui.height }}; /* Add space above for the whole container */
}
section.main {
pointer-events: auto;
position: relative;
/* top: {{ ui.height }}; */
}