Skip to content

Commit

Permalink
fix: integrations dropdown overflow in mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
anish-work committed Sep 9, 2024
1 parent 76b2051 commit fdfc5db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion recipes/VideoBots.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="",
Expand Down

0 comments on commit fdfc5db

Please sign in to comment.