Spaces:
Sleeping
Sleeping
sekpona kokou commited on
Commit ·
b7ed989
1
Parent(s): ceaee93
Set full-width default chat layout
Browse files
app.py
CHANGED
|
@@ -33,8 +33,11 @@ SUGGESTIONS = [
|
|
| 33 |
# Keep CSS minimal to avoid HF Spaces iframe layout bugs
|
| 34 |
CSS = """
|
| 35 |
.gradio-container {
|
| 36 |
-
max-width:
|
|
|
|
| 37 |
margin: 0 auto !important;
|
|
|
|
|
|
|
| 38 |
}
|
| 39 |
"""
|
| 40 |
|
|
|
|
| 33 |
# Keep CSS minimal to avoid HF Spaces iframe layout bugs
|
| 34 |
CSS = """
|
| 35 |
.gradio-container {
|
| 36 |
+
max-width: none !important;
|
| 37 |
+
width: 100% !important;
|
| 38 |
margin: 0 auto !important;
|
| 39 |
+
padding-left: 20px !important;
|
| 40 |
+
padding-right: 20px !important;
|
| 41 |
}
|
| 42 |
"""
|
| 43 |
|