We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sidebar does not expand across the page in vertical mode. I think it should be on the whole page even if I scroll down or up through it.
marimo env
The text was updated successfully, but these errors were encountered:
Thank you for @junior19a2000 for flagging this, hopefully a new line CSS fix, we can look into this.
Sorry, something went wrong.
Thanks. I also noticed this, i think it should be completely closed and only a kind of button for reopening should be visible.
Cheers
Psdt: Marimo is amazing !
No branches or pull requests
Describe the bug
Sidebar does not expand across the page in vertical mode. I think it should be on the whole page even if I scroll down or up through it.
Environment
marimo env
Code to reproduce
def Factores(): -- | factores = pd.read_excel(f'https://docs.google.com/spreadsheet/ccc?key=1XmL9FLRSQAqmmvZweBPLBG3Sk_Bh73VHT1UKTHwd74s&output=xlsx', sheet_name='Factores de riesgo') | fac2dict = {} | for i in range(factores.shape[0]): | fac2dict['Factor de riesgo ' + str(i + 1)] = mo.md(f"####{factores.iat[i, 0]}") | return mo.sidebar(item = [ | mo.md(f"# Factores de riesgo"), | mo.md(f""), | mo.accordion(items = fac2dict, multiple=True), | ]), factores.shape[0] | sidebar, factores = Factores() | sidebar
The text was updated successfully, but these errors were encountered: