Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,6 +22,37 @@ with stylable_container(
|
|
| 22 |
):
|
| 23 |
st.button("Upload File")
|
| 24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
|
| 27 |
|
|
|
|
| 22 |
):
|
| 23 |
st.button("Upload File")
|
| 24 |
|
| 25 |
+
with stylable_container(
|
| 26 |
+
key="container_with_border",
|
| 27 |
+
css_styles=r"""
|
| 28 |
+
button p:before {
|
| 29 |
+
font-family: 'Font Awesome 5 Free';
|
| 30 |
+
content: '\f317';
|
| 31 |
+
display: inline-block;
|
| 32 |
+
padding-right: 3px;
|
| 33 |
+
vertical-align: middle;
|
| 34 |
+
font-weight: 900;
|
| 35 |
+
}
|
| 36 |
+
""",
|
| 37 |
+
):
|
| 38 |
+
st.button("Delete File")
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
with stylable_container(
|
| 42 |
+
key="container_with_border",
|
| 43 |
+
css_styles=r"""
|
| 44 |
+
button p:before {
|
| 45 |
+
font-family: 'Font Awesome 5 Free';
|
| 46 |
+
content: '\f37e';
|
| 47 |
+
display: inline-block;
|
| 48 |
+
padding-right: 3px;
|
| 49 |
+
vertical-align: middle;
|
| 50 |
+
font-weight: 900;
|
| 51 |
+
}
|
| 52 |
+
""",
|
| 53 |
+
):
|
| 54 |
+
st.button("Browse Files")
|
| 55 |
+
|
| 56 |
|
| 57 |
|
| 58 |
|