Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -269,6 +269,11 @@ css = """
|
|
| 269 |
max-width: 980px;
|
| 270 |
text-align: left;
|
| 271 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 272 |
"""
|
| 273 |
|
| 274 |
with gr.Blocks(css=css) as demo:
|
|
@@ -332,7 +337,8 @@ with gr.Blocks(css=css) as demo:
|
|
| 332 |
caption = gr.Textbox(
|
| 333 |
label = "Inspirational musical prompt",
|
| 334 |
max_lines = 6,
|
| 335 |
-
interactive = False
|
|
|
|
| 336 |
)
|
| 337 |
|
| 338 |
retry_btn = gr.Button("Retry with edited prompt", visible=False)
|
|
|
|
| 269 |
max-width: 980px;
|
| 270 |
text-align: left;
|
| 271 |
}
|
| 272 |
+
#inspi-prompt{
|
| 273 |
+
font-size: 20px;
|
| 274 |
+
line-height: 24px;
|
| 275 |
+
font-weight: 600;
|
| 276 |
+
}
|
| 277 |
"""
|
| 278 |
|
| 279 |
with gr.Blocks(css=css) as demo:
|
|
|
|
| 337 |
caption = gr.Textbox(
|
| 338 |
label = "Inspirational musical prompt",
|
| 339 |
max_lines = 6,
|
| 340 |
+
interactive = False,
|
| 341 |
+
elem_id = "inspi-prompt"
|
| 342 |
)
|
| 343 |
|
| 344 |
retry_btn = gr.Button("Retry with edited prompt", visible=False)
|