remove_style.py 299 B

1234567891011
  1. """remove some streamlit style"""
  2. import streamlit as st
  3. def hide_footer():
  4. hide_st_style = """
  5. <style>
  6. footer {visibility: hidden;}
  7. </style>
  8. """
  9. st.markdown(hide_st_style, unsafe_allow_html=True)