Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,11 @@ def authenticate_from_public(username, password):
|
|
16 |
return authenticate(username, password, dataset_url, dataset_path)
|
17 |
|
18 |
|
|
|
|
|
|
|
|
|
|
|
19 |
light_theme_colors = gr.themes.Color(c50="#e4f3fa", # Dataframe background cell content - light mode only
|
20 |
c100="#e4f3fa", # Top corner of clear button in light mode + markdown text in dark mode
|
21 |
c200="#a1c6db", # Component borders
|
|
|
16 |
return authenticate(username, password, dataset_url, dataset_path)
|
17 |
|
18 |
|
19 |
+
css_styling = """#submit {background: #1eccd8}
|
20 |
+
#submit:hover {background: #a2f1f6}
|
21 |
+
.output-image, .input-image, .image-preview {height: 250px !important}
|
22 |
+
.output-plot {height: 250px !important}"""
|
23 |
+
|
24 |
light_theme_colors = gr.themes.Color(c50="#e4f3fa", # Dataframe background cell content - light mode only
|
25 |
c100="#e4f3fa", # Top corner of clear button in light mode + markdown text in dark mode
|
26 |
c200="#a1c6db", # Component borders
|