Skip to content

Commit 5358f0f

Browse files
fix: make sidebar container height 100%
This allows content of the sidebar to use also height 100% and not interrupt the 100% height chain.
1 parent f9ab6bb commit 5358f0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solara/components/applayout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def set_path(index):
342342
):
343343
if not show_app_bar:
344344
AppIcon(sidebar_open, on_click=lambda: set_sidebar_open(not sidebar_open))
345-
v.Html(tag="div", children=children_sidebar, style_="padding: 12px;").meta(ref="sidebar-content")
345+
v.Html(tag="div", children=children_sidebar, style_="padding: 12px; height: 100%").meta(ref="sidebar-content")
346346
if show_app_bar:
347347
# if hide_on_scroll is True, and we have a little bit of scrolling, vuetify seems to act strangely
348348
# when scrolling (on @mariobuikhuizen/vuetify v2.2.26-rc.0

0 commit comments

Comments
 (0)