Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -90,6 +90,11 @@ custom_css = """
|
|
90 |
#param-slider-wrapper div[data-testid="range-slider"] > span {
|
91 |
display: none !important;
|
92 |
}
|
|
|
|
|
|
|
|
|
|
|
93 |
"""
|
94 |
|
95 |
with gr.Blocks(title="🤗 ModelVerse Explorer", fill_width=True, css=custom_css) as demo:
|
|
|
90 |
#param-slider-wrapper div[data-testid="range-slider"] > span {
|
91 |
display: none !important;
|
92 |
}
|
93 |
+
/* --- ADDED RULE --- */
|
94 |
+
/* Hide the min/max input boxes and reset button above the RangeSlider */
|
95 |
+
#param-slider-wrapper .head {
|
96 |
+
display: none !important;
|
97 |
+
}
|
98 |
"""
|
99 |
|
100 |
with gr.Blocks(title="🤗 ModelVerse Explorer", fill_width=True, css=custom_css) as demo:
|