Spaces:
Paused
Paused
Update app.py (#2)
Browse files- Update app.py (4bba43521cd6f12f7aca7babfd5878a8cc3df808)
app.py
CHANGED
|
@@ -132,7 +132,7 @@ class GradioEvents:
|
|
| 132 |
<script type="importmap">
|
| 133 |
{import_map}
|
| 134 |
</script>
|
| 135 |
-
|
| 136 |
</head>
|
| 137 |
<body>
|
| 138 |
<div id="root"></div>
|
|
@@ -230,6 +230,9 @@ css = """
|
|
| 230 |
|
| 231 |
.output-html > iframe {
|
| 232 |
flex: 1;
|
|
|
|
|
|
|
|
|
|
| 233 |
}
|
| 234 |
|
| 235 |
.output-code {
|
|
@@ -238,7 +241,8 @@ css = """
|
|
| 238 |
}
|
| 239 |
|
| 240 |
.gradio-container {
|
| 241 |
-
max-width:
|
|
|
|
| 242 |
}
|
| 243 |
"""
|
| 244 |
|
|
@@ -440,4 +444,4 @@ with gr.Blocks(css=css, title="GPT5 Vibe Tester") as demo:
|
|
| 440 |
|
| 441 |
if __name__ == "__main__":
|
| 442 |
demo.queue(default_concurrency_limit=100,
|
| 443 |
-
max_size=100).launch(ssr_mode=False, max_threads=100)
|
|
|
|
| 132 |
<script type="importmap">
|
| 133 |
{import_map}
|
| 134 |
</script>
|
| 135 |
+
|
| 136 |
</head>
|
| 137 |
<body>
|
| 138 |
<div id="root"></div>
|
|
|
|
| 230 |
|
| 231 |
.output-html > iframe {
|
| 232 |
flex: 1;
|
| 233 |
+
width: 100% !important;
|
| 234 |
+
margin: 0 !important;
|
| 235 |
+
padding: 0 !important;
|
| 236 |
}
|
| 237 |
|
| 238 |
.output-code {
|
|
|
|
| 241 |
}
|
| 242 |
|
| 243 |
.gradio-container {
|
| 244 |
+
max-width: none !important;
|
| 245 |
+
width: 100% !important;
|
| 246 |
}
|
| 247 |
"""
|
| 248 |
|
|
|
|
| 444 |
|
| 445 |
if __name__ == "__main__":
|
| 446 |
demo.queue(default_concurrency_limit=100,
|
| 447 |
+
max_size=100).launch(ssr_mode=False, max_threads=100)
|