Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ def render_menu():
|
|
29 |
|
30 |
with gr.Column(elem_id="menu-container"):
|
31 |
for item in menu_items:
|
32 |
-
with gr.Row(
|
33 |
gr.Markdown(item["name"])
|
34 |
|
35 |
return demo
|
|
|
29 |
|
30 |
with gr.Column(elem_id="menu-container"):
|
31 |
for item in menu_items:
|
32 |
+
with gr.Row(elem_classes=["menu-item"]): # Use elem_classes for custom styling
|
33 |
gr.Markdown(item["name"])
|
34 |
|
35 |
return demo
|