Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ with upload_column:
|
|
26 |
}
|
27 |
""",
|
28 |
):
|
29 |
-
st.button("", key='upload')
|
30 |
|
31 |
with delete_column:
|
32 |
with stylable_container(
|
@@ -42,7 +42,7 @@ with delete_column:
|
|
42 |
}
|
43 |
""",
|
44 |
):
|
45 |
-
st.button("", key='delete')
|
46 |
|
47 |
with browse_column:
|
48 |
with stylable_container(
|
@@ -58,7 +58,7 @@ with browse_column:
|
|
58 |
}
|
59 |
""",
|
60 |
):
|
61 |
-
st.button("", key='view')
|
62 |
|
63 |
with recycle_column:
|
64 |
with stylable_container(
|
@@ -74,7 +74,7 @@ with recycle_column:
|
|
74 |
}
|
75 |
""",
|
76 |
):
|
77 |
-
st.button("", key='recycle')
|
78 |
|
79 |
|
80 |
|
|
|
26 |
}
|
27 |
""",
|
28 |
):
|
29 |
+
st.button(" ", key='upload')
|
30 |
|
31 |
with delete_column:
|
32 |
with stylable_container(
|
|
|
42 |
}
|
43 |
""",
|
44 |
):
|
45 |
+
st.button(" ", key='delete')
|
46 |
|
47 |
with browse_column:
|
48 |
with stylable_container(
|
|
|
58 |
}
|
59 |
""",
|
60 |
):
|
61 |
+
st.button(" ", key='view')
|
62 |
|
63 |
with recycle_column:
|
64 |
with stylable_container(
|
|
|
74 |
}
|
75 |
""",
|
76 |
):
|
77 |
+
st.button(" ", key='recycle')
|
78 |
|
79 |
|
80 |
|