Spaces:
Running
Running
Make display full width
Browse filesThe 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
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 {
|
| 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 |
|