Spaces:
Sleeping
Sleeping
Add comprehensive white background targeting html, body, and .gradio-app
Browse filesTarget multiple elements to ensure complete white background coverage on HuggingFace Spaces.
This should eliminate any remaining black/dark margins or background areas.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
app.py
CHANGED
|
@@ -139,6 +139,10 @@ with gr.Blocks(
|
|
| 139 |
theme=gr.themes.Default(),
|
| 140 |
title="MobileNetV2 Classification",
|
| 141 |
css="""
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
.gradio-container {
|
| 143 |
max-width: 1200px !important;
|
| 144 |
margin: auto !important;
|
|
|
|
| 139 |
theme=gr.themes.Default(),
|
| 140 |
title="MobileNetV2 Classification",
|
| 141 |
css="""
|
| 142 |
+
html, body, .gradio-app {
|
| 143 |
+
background: white !important;
|
| 144 |
+
background-color: white !important;
|
| 145 |
+
}
|
| 146 |
.gradio-container {
|
| 147 |
max-width: 1200px !important;
|
| 148 |
margin: auto !important;
|