Spaces:
Running on Zero
Running on Zero
Remove output panel bottom gap
Browse files
app.py
CHANGED
|
@@ -125,7 +125,6 @@ DEFAULT_KINEMATIC_TREE = {
|
|
| 125 |
DEMO_CSS = """
|
| 126 |
:root {
|
| 127 |
--demo-top-row-height: 760px;
|
| 128 |
-
--demo-bottom-row-height: 600px;
|
| 129 |
--demo-text: #111827;
|
| 130 |
--demo-muted: #4b5563;
|
| 131 |
--demo-panel-bg: #f8fafc;
|
|
@@ -168,10 +167,10 @@ DEMO_CSS = """
|
|
| 168 |
overflow: hidden;
|
| 169 |
}
|
| 170 |
.demo-bottom-row {
|
| 171 |
-
height:
|
| 172 |
-
min-height:
|
| 173 |
-
max-height:
|
| 174 |
-
overflow:
|
| 175 |
}
|
| 176 |
.demo-panel {
|
| 177 |
height: 100%;
|
|
@@ -185,6 +184,9 @@ DEMO_CSS = """
|
|
| 185 |
min-height: 0;
|
| 186 |
min-width: 0;
|
| 187 |
}
|
|
|
|
|
|
|
|
|
|
| 188 |
.kinematic-json-sync {
|
| 189 |
display: none !important;
|
| 190 |
}
|
|
|
|
| 125 |
DEMO_CSS = """
|
| 126 |
:root {
|
| 127 |
--demo-top-row-height: 760px;
|
|
|
|
| 128 |
--demo-text: #111827;
|
| 129 |
--demo-muted: #4b5563;
|
| 130 |
--demo-panel-bg: #f8fafc;
|
|
|
|
| 167 |
overflow: hidden;
|
| 168 |
}
|
| 169 |
.demo-bottom-row {
|
| 170 |
+
height: auto;
|
| 171 |
+
min-height: 0;
|
| 172 |
+
max-height: none;
|
| 173 |
+
overflow: visible;
|
| 174 |
}
|
| 175 |
.demo-panel {
|
| 176 |
height: 100%;
|
|
|
|
| 184 |
min-height: 0;
|
| 185 |
min-width: 0;
|
| 186 |
}
|
| 187 |
+
.demo-bottom-row .demo-panel {
|
| 188 |
+
height: auto;
|
| 189 |
+
}
|
| 190 |
.kinematic-json-sync {
|
| 191 |
display: none !important;
|
| 192 |
}
|