Spestly commited on
Commit
5ebfa60
·
verified ·
1 Parent(s): b5e770d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -2
app.py CHANGED
@@ -13,16 +13,30 @@ iframe_html = f"""
13
  """
14
 
15
 
16
- with gr.Blocks(css=".centered-title { text-align: center; }") as app:
 
 
 
 
 
 
 
 
 
 
17
  with gr.Row():
18
  gr.Markdown(
19
  "### OdysseyXL-4.0 - Powered By [DiffuseCraft](https://r3gm-diffusecraft.hf.space)",
20
- elem_classes="centered-title"
21
  )
22
 
23
  with gr.Row():
24
  gr.HTML(iframe_html)
25
 
26
 
 
 
 
 
27
 
28
  app.launch()
 
13
  """
14
 
15
 
16
+ with gr.Blocks(css="""
17
+ .centered-title {
18
+ text-align: center;
19
+ font-size: 36px;
20
+ font-weight: bold;
21
+ margin-bottom: 20px;
22
+ }
23
+ .spacer {
24
+ height: 100px; /* Adjust to fill remaining space */
25
+ }
26
+ """) as app:
27
  with gr.Row():
28
  gr.Markdown(
29
  "### OdysseyXL-4.0 - Powered By [DiffuseCraft](https://r3gm-diffusecraft.hf.space)",
30
+ elem_classes="centered-title"
31
  )
32
 
33
  with gr.Row():
34
  gr.HTML(iframe_html)
35
 
36
 
37
+ with gr.Row():
38
+ gr.HTML('<div class="spacer"></div>')
39
+
40
+
41
 
42
  app.launch()