From af9cf5a10612a351ba22575b39a04bb75b5329e0 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Tue, 28 May 2024 22:59:23 -0700 Subject: [PATCH] wrap buttons --- src/ptouch_web/dashapp.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ptouch_web/dashapp.py b/src/ptouch_web/dashapp.py index 0859a95..d4ed7d8 100644 --- a/src/ptouch_web/dashapp.py +++ b/src/ptouch_web/dashapp.py @@ -9,7 +9,9 @@ app = Dash( assets_folder="../../assets/", ) -templates_div = html.Div(id="templates", className="d-flex gap-2", children=[]) +templates_div = html.Div( + id="templates", className="d-flex gap-2 flex-wrap", children=[] +) app.layout = html.Div( className="container-md", children=[ -- 2.39.5