From fdfc5db39b734fb35743f19068f9a9168bbcaef4 Mon Sep 17 00:00:00 2001 From: anish-work Date: Tue, 10 Sep 2024 01:02:22 +0530 Subject: [PATCH] fix: integrations dropdown overflow in mobile --- recipes/VideoBots.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes/VideoBots.py b/recipes/VideoBots.py index 77b266c26..4ad0d7624 100644 --- a/recipes/VideoBots.py +++ b/recipes/VideoBots.py @@ -1192,7 +1192,9 @@ def render_integrations_settings( gui.markdown("#### Configure your Copilot") if len(integrations) > 1: - with gui.div(style={"minWidth": "500px", "textAlign": "left"}): + with gui.div( + style={"width": "100%", "maxWidth": "500px", "textAlign": "left"} + ): integrations_map = {i.id: i for i in integrations} bi_id = gui.selectbox( label="",