Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ st.markdown(
|
|
12 |
unsafe_allow_html=True,
|
13 |
)
|
14 |
|
15 |
-
with upload_column
|
16 |
with stylable_container(
|
17 |
key="upload_button",
|
18 |
css_styles=r"""
|
@@ -28,7 +28,7 @@ with upload_column
|
|
28 |
):
|
29 |
st.button("Upload File")
|
30 |
|
31 |
-
with delete_column
|
32 |
with stylable_container(
|
33 |
key="delete_button",
|
34 |
css_styles=r"""
|
@@ -44,7 +44,7 @@ with delete_column
|
|
44 |
):
|
45 |
st.button("Delete File")
|
46 |
|
47 |
-
with browse_column
|
48 |
with stylable_container(
|
49 |
key="view_button",
|
50 |
css_styles=r"""
|
@@ -60,7 +60,7 @@ with browse_column
|
|
60 |
):
|
61 |
st.button("View Folder")
|
62 |
|
63 |
-
with recycle_column
|
64 |
with stylable_container(
|
65 |
key="recycle_button",
|
66 |
css_styles=r"""
|
|
|
12 |
unsafe_allow_html=True,
|
13 |
)
|
14 |
|
15 |
+
with upload_column:
|
16 |
with stylable_container(
|
17 |
key="upload_button",
|
18 |
css_styles=r"""
|
|
|
28 |
):
|
29 |
st.button("Upload File")
|
30 |
|
31 |
+
with delete_column:
|
32 |
with stylable_container(
|
33 |
key="delete_button",
|
34 |
css_styles=r"""
|
|
|
44 |
):
|
45 |
st.button("Delete File")
|
46 |
|
47 |
+
with browse_column:
|
48 |
with stylable_container(
|
49 |
key="view_button",
|
50 |
css_styles=r"""
|
|
|
60 |
):
|
61 |
st.button("View Folder")
|
62 |
|
63 |
+
with recycle_column:
|
64 |
with stylable_container(
|
65 |
key="recycle_button",
|
66 |
css_styles=r"""
|