w3robotics commited on
Commit
35b583e
·
verified ·
1 Parent(s): de1ba67

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +63 -59
app.py CHANGED
@@ -12,65 +12,69 @@ st.markdown(
12
  unsafe_allow_html=True,
13
  )
14
 
15
- with stylable_container(
16
- key="upload_button",
17
- css_styles=r"""
18
- button p:before {
19
- font-family: 'Font Awesome 5 Free';
20
- content: '\f574';
21
- display: inline-block;
22
- padding-right: 3px;
23
- vertical-align: middle;
24
- font-weight: 900;
25
- }
26
- """,
27
- ):
28
- upload_column.button("Upload File")
29
-
30
- with stylable_container(
31
- key="delete_button",
32
- css_styles=r"""
33
- button p:before {
34
- font-family: 'Font Awesome 5 Free';
35
- content: '\f1c3';
36
- display: inline-block;
37
- padding-right: 3px;
38
- vertical-align: middle;
39
- font-weight: 900;
40
- }
41
- """,
42
- ):
43
- delete_column.button("Delete File")
44
-
45
- with stylable_container(
46
- key="view_button",
47
- css_styles=r"""
48
- button p:before {
49
- font-family: 'Font Awesome 5 Free';
50
- content: '\f07c';
51
- display: inline-block;
52
- padding-right: 3px;
53
- vertical-align: middle;
54
- font-weight: 900;
55
- }
56
- """,
57
- ):
58
- browse_column.button("View Folder")
59
-
60
- with stylable_container(
61
- key="recycle_button",
62
- css_styles=r"""
63
- button p:before {
64
- font-family: 'Font Awesome 5 Free';
65
- content: '\f1b8';
66
- display: inline-block;
67
- padding-right: 3px;
68
- vertical-align: middle;
69
- font-weight: 900;
70
- }
71
- """,
72
- ):
73
- recycle_column.button("Recycle App")
 
 
 
 
74
 
75
 
76
 
 
12
  unsafe_allow_html=True,
13
  )
14
 
15
+ with upload_column
16
+ with stylable_container(
17
+ key="upload_button",
18
+ css_styles=r"""
19
+ button p:before {
20
+ font-family: 'Font Awesome 5 Free';
21
+ content: '\f574';
22
+ display: inline-block;
23
+ padding-right: 3px;
24
+ vertical-align: middle;
25
+ font-weight: 900;
26
+ }
27
+ """,
28
+ ):
29
+ st.button("Upload File")
30
+
31
+ with delete_column
32
+ with stylable_container(
33
+ key="delete_button",
34
+ css_styles=r"""
35
+ button p:before {
36
+ font-family: 'Font Awesome 5 Free';
37
+ content: '\f1c3';
38
+ display: inline-block;
39
+ padding-right: 3px;
40
+ vertical-align: middle;
41
+ font-weight: 900;
42
+ }
43
+ """,
44
+ ):
45
+ st.button("Delete File")
46
+
47
+ with browse_column
48
+ with stylable_container(
49
+ key="view_button",
50
+ css_styles=r"""
51
+ button p:before {
52
+ font-family: 'Font Awesome 5 Free';
53
+ content: '\f07c';
54
+ display: inline-block;
55
+ padding-right: 3px;
56
+ vertical-align: middle;
57
+ font-weight: 900;
58
+ }
59
+ """,
60
+ ):
61
+ st.button("View Folder")
62
+
63
+ with recycle_column
64
+ with stylable_container(
65
+ key="recycle_button",
66
+ css_styles=r"""
67
+ button p:before {
68
+ font-family: 'Font Awesome 5 Free';
69
+ content: '\f1b8';
70
+ display: inline-block;
71
+ padding-right: 3px;
72
+ vertical-align: middle;
73
+ font-weight: 900;
74
+ }
75
+ """,
76
+ ):
77
+ st.button("Recycle App")
78
 
79
 
80