Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -65,6 +65,10 @@ with gr.Blocks(css=css) as myface:
|
|
65 |
border-bottom-color: #ffffff !important;
|
66 |
border-left-color: #000000 !important;
|
67 |
}
|
|
|
|
|
|
|
|
|
68 |
</style>
|
69 |
<body>
|
70 |
<div class="center"><h1>ToyWorld XL 401</h1>
|
@@ -81,11 +85,6 @@ with gr.Blocks(css=css) as myface:
|
|
81 |
with gr.Row():
|
82 |
with gr.Column(scale=100):
|
83 |
#Model selection dropdown
|
84 |
-
gr.HTML("""<style> .required-dropdown li{
|
85 |
-
color: white
|
86 |
-
background-image: linear-gradient(#1e1e2e, #24273a, #303446) !important;
|
87 |
-
} </style>""")
|
88 |
-
|
89 |
model_name1 = gr.Dropdown(label="Select Model", choices=[m for m in models], type="index", value=current_model, interactive=True)
|
90 |
with gr.Row():
|
91 |
with gr.Column(scale=100):
|
|
|
65 |
border-bottom-color: #ffffff !important;
|
66 |
border-left-color: #000000 !important;
|
67 |
}
|
68 |
+
|
69 |
+
.required-dropdown li{
|
70 |
+
color: white
|
71 |
+
background-image: linear-gradient(#1e1e2e, #24273a, #303446) !important;
|
72 |
</style>
|
73 |
<body>
|
74 |
<div class="center"><h1>ToyWorld XL 401</h1>
|
|
|
85 |
with gr.Row():
|
86 |
with gr.Column(scale=100):
|
87 |
#Model selection dropdown
|
|
|
|
|
|
|
|
|
|
|
88 |
model_name1 = gr.Dropdown(label="Select Model", choices=[m for m in models], type="index", value=current_model, interactive=True)
|
89 |
with gr.Row():
|
90 |
with gr.Column(scale=100):
|