Spaces:
Sleeping
Sleeping
TOTEM Studio commited on
Commit ·
60dca31
1
Parent(s): d06eff6
fix sidebar seam: match all backgrounds to HF wrapper #0b0f19
Browse files
app.py
CHANGED
|
@@ -70,18 +70,18 @@ CSS = """
|
|
| 70 |
.gradio-container {
|
| 71 |
max-width: none !important;
|
| 72 |
padding: 0 !important;
|
| 73 |
-
background: #
|
| 74 |
color: #f6f1e8 !important;
|
| 75 |
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
|
| 76 |
}
|
| 77 |
|
| 78 |
html, body {
|
| 79 |
-
background: #
|
| 80 |
}
|
| 81 |
|
| 82 |
.gradio-container > .tabs,
|
| 83 |
.gradio-container > div {
|
| 84 |
-
background: #
|
| 85 |
}
|
| 86 |
|
| 87 |
/* Strip all Gradio wrapper padding around the dashboard HTML component */
|
|
@@ -374,7 +374,7 @@ TOTEM_CSS = """
|
|
| 374 |
flex: 0 0 256px;
|
| 375 |
min-height: 100%;
|
| 376 |
border-right: 1px solid rgba(246, 241, 232, 0.10);
|
| 377 |
-
background: #
|
| 378 |
padding: 0 0 24px 0;
|
| 379 |
display: flex;
|
| 380 |
flex-direction: column;
|
|
|
|
| 70 |
.gradio-container {
|
| 71 |
max-width: none !important;
|
| 72 |
padding: 0 !important;
|
| 73 |
+
background: #0b0f19 !important;
|
| 74 |
color: #f6f1e8 !important;
|
| 75 |
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
|
| 76 |
}
|
| 77 |
|
| 78 |
html, body {
|
| 79 |
+
background: #0b0f19 !important;
|
| 80 |
}
|
| 81 |
|
| 82 |
.gradio-container > .tabs,
|
| 83 |
.gradio-container > div {
|
| 84 |
+
background: #0b0f19 !important;
|
| 85 |
}
|
| 86 |
|
| 87 |
/* Strip all Gradio wrapper padding around the dashboard HTML component */
|
|
|
|
| 374 |
flex: 0 0 256px;
|
| 375 |
min-height: 100%;
|
| 376 |
border-right: 1px solid rgba(246, 241, 232, 0.10);
|
| 377 |
+
background: #0b0f19;
|
| 378 |
padding: 0 0 24px 0;
|
| 379 |
display: flex;
|
| 380 |
flex-direction: column;
|