Spaces:
Running
Running
Fix margin issues causing patchy background within content area
Browse filesMargin fixes applied:
- Remove max-width constraint (max-width: none)
- Remove auto margins (margin: 0)
- Use full viewport width (width: 100vw)
This should eliminate margin-based gaps within the content area.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
app.py
CHANGED
@@ -398,11 +398,11 @@ with gr.Blocks(
|
|
398 |
background: #fafafa !important;
|
399 |
}
|
400 |
.gradio-container {
|
401 |
-
max-width:
|
402 |
-
margin
|
403 |
-
margin-right: auto !important;
|
404 |
background-color: #fafafa !important;
|
405 |
font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif !important;
|
|
|
406 |
}
|
407 |
.gr-row {
|
408 |
display: flex !important;
|
|
|
398 |
background: #fafafa !important;
|
399 |
}
|
400 |
.gradio-container {
|
401 |
+
max-width: none !important;
|
402 |
+
margin: 0 !important;
|
|
|
403 |
background-color: #fafafa !important;
|
404 |
font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif !important;
|
405 |
+
width: 100vw !important;
|
406 |
}
|
407 |
.gr-row {
|
408 |
display: flex !important;
|