afg1 commited on
Commit
459eb25
·
verified ·
1 Parent(s): 334508f

Make display full width

Browse files

The line wrapping in the table makes it hard to read. I think this will make the table a bit more legible. It worked locally, but I haven't been able to test in a proper space

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -140,7 +140,7 @@ def refresh_table(field: str, search: str):
140
  # ------------------------------
141
  # UI
142
  # ------------------------------
143
- with gr.Blocks(title="Community Dataset Index", css=".wrap {max-width: 1200px; margin: 0 auto}") as demo:
144
  gr.Markdown("# Community Dataset Index\nContribute datasets with a short description. Sign in to record your HF username.")
145
  gr.LoginButton()
146
 
 
140
  # ------------------------------
141
  # UI
142
  # ------------------------------
143
+ with gr.Blocks(title="Community Dataset Index", css=".wrap {margin: 0 auto}", fill_width=True) as demo:
144
  gr.Markdown("# Community Dataset Index\nContribute datasets with a short description. Sign in to record your HF username.")
145
  gr.LoginButton()
146