Spaces:
Runtime error
Runtime error
Update app_multi.py
Browse files- app_multi.py +1 -5
app_multi.py
CHANGED
@@ -52,10 +52,6 @@ arg_parser.add_argument(
|
|
52 |
args = arg_parser.parse_args()
|
53 |
|
54 |
app_css = '''
|
55 |
-
|
56 |
-
:root {
|
57 |
-
--primary-500: #FFDAA6 !important;
|
58 |
-
}
|
59 |
#model_info img {
|
60 |
max-width: 100px;
|
61 |
max-height: 100px;
|
@@ -68,7 +64,7 @@ app_css = '''
|
|
68 |
'''
|
69 |
|
70 |
app = gr.Blocks(
|
71 |
-
theme=gr.themes.Soft(),
|
72 |
css=app_css,
|
73 |
analytics_enabled=False
|
74 |
)
|
|
|
52 |
args = arg_parser.parse_args()
|
53 |
|
54 |
app_css = '''
|
|
|
|
|
|
|
|
|
55 |
#model_info img {
|
56 |
max-width: 100px;
|
57 |
max-height: 100px;
|
|
|
64 |
'''
|
65 |
|
66 |
app = gr.Blocks(
|
67 |
+
theme=gr.themes.Soft(primary_hue="orange", secondary_hue="white"),
|
68 |
css=app_css,
|
69 |
analytics_enabled=False
|
70 |
)
|