Spaces:
Running
Running
Update assets/zen.css
Browse files- assets/zen.css +13 -10
assets/zen.css
CHANGED
|
@@ -70,16 +70,6 @@ body, .gradio-container{
|
|
| 70 |
.zen-kpi .v{ font-size: 18px; font-weight: 700; margin-top: 2px; }
|
| 71 |
.zen-kpi .s{ font-size: 11px; color: var(--muted); margin-top: 2px; }
|
| 72 |
|
| 73 |
-
.zen-split{
|
| 74 |
-
display:grid;
|
| 75 |
-
grid-template-columns: 1.1fr 0.9fr;
|
| 76 |
-
gap: 12px;
|
| 77 |
-
}
|
| 78 |
-
@media (max-width: 1100px){
|
| 79 |
-
.zen-split{ grid-template-columns: 1fr; }
|
| 80 |
-
.zen-kpi{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
| 81 |
-
}
|
| 82 |
-
|
| 83 |
.zen-note{
|
| 84 |
color: var(--muted);
|
| 85 |
font-size: 12px;
|
|
@@ -104,3 +94,16 @@ button.primary{
|
|
| 104 |
.gr-dataframe thead{
|
| 105 |
background: rgba(255,255,255,0.08) !important;
|
| 106 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
.zen-kpi .v{ font-size: 18px; font-weight: 700; margin-top: 2px; }
|
| 71 |
.zen-kpi .s{ font-size: 11px; color: var(--muted); margin-top: 2px; }
|
| 72 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
.zen-note{
|
| 74 |
color: var(--muted);
|
| 75 |
font-size: 12px;
|
|
|
|
| 94 |
.gr-dataframe thead{
|
| 95 |
background: rgba(255,255,255,0.08) !important;
|
| 96 |
}
|
| 97 |
+
|
| 98 |
+
/* Tall table containers for Gradio 6 (Dataframe has no height=) */
|
| 99 |
+
.zen-table-520 {
|
| 100 |
+
max-height: 520px;
|
| 101 |
+
overflow: auto;
|
| 102 |
+
border-radius: 14px;
|
| 103 |
+
}
|
| 104 |
+
|
| 105 |
+
.zen-table-600 {
|
| 106 |
+
max-height: 600px;
|
| 107 |
+
overflow: auto;
|
| 108 |
+
border-radius: 14px;
|
| 109 |
+
}
|