Spaces:
Running
Running
Update demo.py
Browse files
demo.py
CHANGED
@@ -74,6 +74,12 @@ css = """
|
|
74 |
.gradio-dropdown select {
|
75 |
height: 100px; /* Set height to 100px */
|
76 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
"""
|
78 |
|
79 |
# Gradio App
|
|
|
74 |
.gradio-dropdown select {
|
75 |
height: 100px; /* Set height to 100px */
|
76 |
}
|
77 |
+
|
78 |
+
/* Fix the height of accordions to avoid shifting layout */
|
79 |
+
.gradio-accordion {
|
80 |
+
height: 150px; /* Set a fixed height for the accordion */
|
81 |
+
overflow: hidden; /* Hide content overflow if the content is larger */
|
82 |
+
}
|
83 |
"""
|
84 |
|
85 |
# Gradio App
|