Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
d70f0b1
1
Parent(s):
9cbe743
fix: allow dropdown menus to overflow parent containers
Browse files
app.py
CHANGED
|
@@ -1430,7 +1430,7 @@ def create_interface() -> gr.Blocks:
|
|
| 1430 |
display: flex !important;
|
| 1431 |
flex-direction: column !important;
|
| 1432 |
overflow-y: auto !important;
|
| 1433 |
-
overflow-x:
|
| 1434 |
max-height: 800px !important;
|
| 1435 |
min-height: 0;
|
| 1436 |
box-sizing: border-box !important;
|
|
@@ -1488,7 +1488,7 @@ def create_interface() -> gr.Blocks:
|
|
| 1488 |
min-height: 100% !important;
|
| 1489 |
max-height: 100% !important;
|
| 1490 |
gap: 0 !important;
|
| 1491 |
-
overflow:
|
| 1492 |
}
|
| 1493 |
|
| 1494 |
.portfolio-row > * {
|
|
|
|
| 1430 |
display: flex !important;
|
| 1431 |
flex-direction: column !important;
|
| 1432 |
overflow-y: auto !important;
|
| 1433 |
+
overflow-x: visible !important;
|
| 1434 |
max-height: 800px !important;
|
| 1435 |
min-height: 0;
|
| 1436 |
box-sizing: border-box !important;
|
|
|
|
| 1488 |
min-height: 100% !important;
|
| 1489 |
max-height: 100% !important;
|
| 1490 |
gap: 0 !important;
|
| 1491 |
+
overflow: visible !important;
|
| 1492 |
}
|
| 1493 |
|
| 1494 |
.portfolio-row > * {
|