dhhd255 commited on
Commit
09526d1
·
1 Parent(s): 7b69f6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -31,9 +31,11 @@ st.markdown("""
31
  .parkinsons {
32
  color: #C30000;
33
  }
 
 
 
34
  .footer {
35
- position: fixed;
36
- left: 0;
37
  bottom: 0;
38
  color:white;
39
  background-color: #141414;
@@ -83,4 +85,4 @@ if uploaded_file is not None:
83
  col2.caption(f'{confidence*100:.0f}% sure')
84
 
85
  # Add the footer
86
- st.markdown('<div class="footer">Hello</div>', unsafe_allow_html=True)
 
31
  .parkinsons {
32
  color: #C30000;
33
  }
34
+ .footer_wrapper{
35
+ height: 100%;
36
+ }
37
  .footer {
38
+ position: absolute;
 
39
  bottom: 0;
40
  color:white;
41
  background-color: #141414;
 
85
  col2.caption(f'{confidence*100:.0f}% sure')
86
 
87
  # Add the footer
88
+ st.markdown('<div class="footer_wrapper"><div class="footer">Hello</div></div>', unsafe_allow_html=True)