Update app.py
Browse files
app.py
CHANGED
@@ -186,16 +186,13 @@ examples = [
|
|
186 |
]
|
187 |
|
188 |
css = """
|
189 |
-
.gradio-container {background-color: MediumAquaMarine}
|
190 |
-
footer{display:none !important}
|
191 |
#app-container {
|
192 |
max-width: 930px;
|
193 |
margin-left: auto;
|
194 |
margin-right: auto;
|
195 |
}
|
196 |
-
|
197 |
-
|
198 |
-
}
|
199 |
"""
|
200 |
|
201 |
with gr.Blocks(css=css, theme=theme) as app:
|
@@ -203,6 +200,7 @@ with gr.Blocks(css=css, theme=theme) as app:
|
|
203 |
with gr.Tab("Basic Settings"):
|
204 |
with gr.Row():
|
205 |
prompt = gr.Textbox(placeholder="Enter the image description...", show_label=True, label='Image Prompt ✍️', lines=3, show_copy_button = True)
|
|
|
206 |
with gr.Row():
|
207 |
gr.Examples(
|
208 |
examples = examples,
|
|
|
186 |
]
|
187 |
|
188 |
css = """
|
|
|
|
|
189 |
#app-container {
|
190 |
max-width: 930px;
|
191 |
margin-left: auto;
|
192 |
margin-right: auto;
|
193 |
}
|
194 |
+
.gradio-container {background-color: MediumAquaMarine}
|
195 |
+
footer{display:none !important}
|
|
|
196 |
"""
|
197 |
|
198 |
with gr.Blocks(css=css, theme=theme) as app:
|
|
|
200 |
with gr.Tab("Basic Settings"):
|
201 |
with gr.Row():
|
202 |
prompt = gr.Textbox(placeholder="Enter the image description...", show_label=True, label='Image Prompt ✍️', lines=3, show_copy_button = True)
|
203 |
+
|
204 |
with gr.Row():
|
205 |
gr.Examples(
|
206 |
examples = examples,
|