Spaces:
Sleeping
Sleeping
Commit
·
73e376c
1
Parent(s):
e0b42cf
add test
Browse files- __pycache__/app.cpython-310.pyc +0 -0
- app.py +2 -2
- style.css +4 -0
__pycache__/app.cpython-310.pyc
CHANGED
|
Binary files a/__pycache__/app.cpython-310.pyc and b/__pycache__/app.cpython-310.pyc differ
|
|
|
app.py
CHANGED
|
@@ -49,8 +49,8 @@ class is highly used.
|
|
| 49 |
- 5.) All LoRA and Textual Inversion downloads are grouped together in "other" for now.
|
| 50 |
"""
|
| 51 |
|
| 52 |
-
with gr.Blocks() as demo:
|
| 53 |
gr.Markdown(NOTE)
|
| 54 |
-
gr.DataFrame(df)
|
| 55 |
|
| 56 |
demo.launch()
|
|
|
|
| 49 |
- 5.) All LoRA and Textual Inversion downloads are grouped together in "other" for now.
|
| 50 |
"""
|
| 51 |
|
| 52 |
+
with gr.Blocks(css="style.css") as demo:
|
| 53 |
gr.Markdown(NOTE)
|
| 54 |
+
gr.DataFrame(df, elem_id="frame")
|
| 55 |
|
| 56 |
demo.launch()
|
style.css
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
frame {
|
| 2 |
+
max-width: 100px;
|
| 3 |
+
margin: auto;
|
| 4 |
+
}
|