SathvikGanta commited on
Commit
20557ee
·
verified ·
1 Parent(s): 034a48f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(className="menu-item"):
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