Spaces:
Sleeping
Sleeping
Make display full width (#3)
Browse files- Make display full width (459eb2518800fc1a18b18b3608f19dfc71260f64)
Co-authored-by: Andrew Green <afg1@users.noreply.huggingface.co>
app.py
CHANGED
|
@@ -148,7 +148,7 @@ def refresh_table(field: str, search: str):
|
|
| 148 |
# ------------------------------
|
| 149 |
# UI
|
| 150 |
# ------------------------------
|
| 151 |
-
with gr.Blocks(title="Community Dataset Index", css=".wrap {
|
| 152 |
gr.Markdown("# Community Dataset Index\nContribute datasets with a short description. Sign in to record your HF username.")
|
| 153 |
gr.LoginButton()
|
| 154 |
|
|
|
|
| 148 |
# ------------------------------
|
| 149 |
# UI
|
| 150 |
# ------------------------------
|
| 151 |
+
with gr.Blocks(title="Community Dataset Index", css=".wrap {margin: 0 auto}", fill_width=True) as demo:
|
| 152 |
gr.Markdown("# Community Dataset Index\nContribute datasets with a short description. Sign in to record your HF username.")
|
| 153 |
gr.LoginButton()
|
| 154 |
|