Spaces:
Running
Running
Commit
·
8bf5da3
1
Parent(s):
1b9a64c
try change button style
Browse files
app.py
CHANGED
@@ -113,11 +113,15 @@ css = """
|
|
113 |
margin: 0 auto;
|
114 |
max-width: 640px;
|
115 |
}
|
|
|
|
|
|
|
|
|
116 |
"""
|
117 |
|
118 |
# generated_prompt = ""
|
119 |
|
120 |
-
with gr.Blocks(css=css) as demo:
|
121 |
# gr.Markdown("# Draptic: from garment image to technical flat sketch")
|
122 |
with gr.Row():
|
123 |
with gr.Column(elem_id="col-input-image"):
|
|
|
113 |
margin: 0 auto;
|
114 |
max-width: 640px;
|
115 |
}
|
116 |
+
button {
|
117 |
+
background-color: #422ad5;
|
118 |
+
outline-color: #422ad5;
|
119 |
+
}
|
120 |
"""
|
121 |
|
122 |
# generated_prompt = ""
|
123 |
|
124 |
+
with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
|
125 |
# gr.Markdown("# Draptic: from garment image to technical flat sketch")
|
126 |
with gr.Row():
|
127 |
with gr.Column(elem_id="col-input-image"):
|