Update app.py
Browse files
app.py
CHANGED
@@ -197,6 +197,7 @@ def img2img(input_image, denoising, prompt, negative_prompt, model, steps, sampl
|
|
197 |
css = """
|
198 |
#generate {
|
199 |
width: 100%;
|
|
|
200 |
outline: none !important;
|
201 |
color: #FFF;
|
202 |
font-size: 16px;
|
@@ -206,7 +207,7 @@ css = """
|
|
206 |
transition: background-color 0.5s ease-in-out;
|
207 |
}
|
208 |
#generate:hover {
|
209 |
-
background
|
210 |
color: #000;
|
211 |
}
|
212 |
footer {visibility: hidden !important;}
|
|
|
197 |
css = """
|
198 |
#generate {
|
199 |
width: 100%;
|
200 |
+
background: transparent !important;
|
201 |
outline: none !important;
|
202 |
color: #FFF;
|
203 |
font-size: 16px;
|
|
|
207 |
transition: background-color 0.5s ease-in-out;
|
208 |
}
|
209 |
#generate:hover {
|
210 |
+
background: #fff !important;
|
211 |
color: #000;
|
212 |
}
|
213 |
footer {visibility: hidden !important;}
|