Spaces:
Sleeping
Sleeping
patrickvonplaten
commited on
Commit
·
d9f6192
1
Parent(s):
73e376c
add test
Browse files- __pycache__/app.cpython-310.pyc +0 -0
- app.py +3 -2
- style.css +1 -4
__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
@@ -50,7 +50,8 @@ class is highly used.
|
|
50 |
"""
|
51 |
|
52 |
with gr.Blocks(css="style.css") as demo:
|
53 |
-
gr.
|
54 |
-
|
|
|
55 |
|
56 |
demo.launch()
|
|
|
50 |
"""
|
51 |
|
52 |
with gr.Blocks(css="style.css") as demo:
|
53 |
+
with gr.Row():
|
54 |
+
gr.DataFrame(df, elem_id="frame")
|
55 |
+
gr.Markdown(NOTE)
|
56 |
|
57 |
demo.launch()
|
style.css
CHANGED
@@ -1,4 +1 @@
|
|
1 |
-
frame {
|
2 |
-
max-width: 100px;
|
3 |
-
margin: auto;
|
4 |
-
}
|
|
|
1 |
+
#frame {max-width: 100px, font_size: 40px}
|
|
|
|
|
|