Jahnavibh Claude commited on
Commit
487db4d
·
1 Parent(s): f2e3e16

Fix margin issues causing patchy background within content area

Browse files

Margin 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]>

Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -398,11 +398,11 @@ with gr.Blocks(
398
  background: #fafafa !important;
399
  }
400
  .gradio-container {
401
- max-width: 1200px !important;
402
- margin-left: auto !important;
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;