Sidebar does not expand across the page
Opened this issue · 2 comments
junior19a2000 commented
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
mscolnick commented
Thank you for @junior19a2000 for flagging this, hopefully a new line CSS fix, we can look into this.
junior19a2000 commented