Spaces:
Running
Running
Let impressions panel match chat width on mobile
Browse filesThe panel is pinned to 360px via flex: 0 0 360px / min-width /
max-width, which on mobile leaves it wider than the chat column it
stacks beneath. Override all three inside the existing max-width: 768px
media query so the panel (and the bar cells / trajectory plot that
flow inside it) follow the chat-column width.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
app.py
CHANGED
|
@@ -323,6 +323,14 @@ ul.options li.selected {
|
|
| 323 |
#prisma-footer .footer-right a {
|
| 324 |
margin: 0 0.4rem;
|
| 325 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 326 |
}
|
| 327 |
"""
|
| 328 |
|
|
|
|
| 323 |
#prisma-footer .footer-right a {
|
| 324 |
margin: 0 0.4rem;
|
| 325 |
}
|
| 326 |
+
|
| 327 |
+
/* Let the impressions panel match the chat-column width below it. */
|
| 328 |
+
#impressions-panel {
|
| 329 |
+
flex: 1 1 auto !important;
|
| 330 |
+
min-width: 0 !important;
|
| 331 |
+
max-width: 100% !important;
|
| 332 |
+
width: 100% !important;
|
| 333 |
+
}
|
| 334 |
}
|
| 335 |
"""
|
| 336 |
|