Rooni commited on
Commit
263bc1c
·
verified ·
1 Parent(s): 9bc6c6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -202,9 +202,12 @@ def img2img(input_image, denoising, prompt, negative_prompt, model, steps, sampl
202
  return job["imageUrl"]
203
 
204
 
205
- css = """
206
- footer {visibility: hidden !important;}
207
- """
 
 
 
208
 
209
  with gr.Blocks(css=css) as demo:
210
  with gr.Row():
 
202
  return job["imageUrl"]
203
 
204
 
205
+ # Ссылка на файл CSS
206
+ css_url = "https://aihubyufi-aihub.static.hf.space/style.css"
207
+
208
+ # Получение CSS по ссылке
209
+ response = requests.get(css_url)
210
+ css = response.text
211
 
212
  with gr.Blocks(css=css) as demo:
213
  with gr.Row():