marimo-team/marimo

Sidebar does not expand across the page

Opened this issue · 2 comments

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.

Image
Image

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

Thank you for @junior19a2000 for flagging this, hopefully a new line CSS fix, we can look into this.

Thanks. I also noticed this, i think it should be completely closed and only a kind of button for reopening should be visible.

Image

Cheers

Psdt: Marimo is amazing !