Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -220,7 +220,17 @@ examples = [
|
|
| 220 |
css = """
|
| 221 |
#col-container {
|
| 222 |
margin: 0 auto;
|
| 223 |
-
max-width:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 224 |
}
|
| 225 |
"""
|
| 226 |
|
|
|
|
| 220 |
css = """
|
| 221 |
#col-container {
|
| 222 |
margin: 0 auto;
|
| 223 |
+
max-width: 800px;
|
| 224 |
+
|
| 225 |
+
body, html {
|
| 226 |
+
height: 100%;
|
| 227 |
+
overflow-y: auto;
|
| 228 |
+
}
|
| 229 |
+
|
| 230 |
+
.gradio-container {
|
| 231 |
+
overflow-y: auto;
|
| 232 |
+
max-height: 100vh;
|
| 233 |
+
}
|
| 234 |
}
|
| 235 |
"""
|
| 236 |
|