streamlit-navigation-bar icon indicating copy to clipboard operation
streamlit-navigation-bar copied to clipboard

Position the sidebar completely below the navigation bar?

Open jiyuxiongdi opened this issue 5 months ago • 0 comments

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!

image

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 }}; */ 
}

jiyuxiongdi avatar Sep 01 '24 15:09 jiyuxiongdi