Update app.py
Browse files
app.py
CHANGED
@@ -200,6 +200,18 @@ def main():
|
|
200 |
height: auto;
|
201 |
}
|
202 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
"""
|
204 |
|
205 |
logo_path = "Equinix-LOGO.jpeg" # Make sure this file exists or update the path
|
|
|
200 |
height: auto;
|
201 |
}
|
202 |
|
203 |
+
/* Hide the download button for images */
|
204 |
+
#header-container .image-container .absolute {
|
205 |
+
display: none !important;
|
206 |
+
}
|
207 |
+
|
208 |
+
/* Hide any download buttons and interactive elements in the header */
|
209 |
+
#header-container button,
|
210 |
+
#header-container .gr-button,
|
211 |
+
#header-container .gr-panel {
|
212 |
+
display: none !important;
|
213 |
+
}
|
214 |
+
|
215 |
"""
|
216 |
|
217 |
logo_path = "Equinix-LOGO.jpeg" # Make sure this file exists or update the path
|