From faec8a6bcb9daeee13361cde56237cc4794d3075 Mon Sep 17 00:00:00 2001 From: Garrick Aden-Buie Date: Wed, 17 Jan 2024 21:10:50 -0500 Subject: [PATCH] fix(page_sidebar): Add semicolon to end style declaration --- shiny/ui/_page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shiny/ui/_page.py b/shiny/ui/_page.py index fcf34b878..7a56b7daa 100644 --- a/shiny/ui/_page.py +++ b/shiny/ui/_page.py @@ -94,7 +94,7 @@ def page_sidebar( sidebar, *children, # Make the main area background white instead of the default gray. - {"style": "--bslib-shiny-preset-main-bg: white"}, + {"style": "--bslib-shiny-preset-main-bg: white;"}, attrs, fillable=fillable, border=False,