"""remove some streamlit style""" import streamlit as st def hide_footer(): hide_st_style = """ <style> footer {visibility: hidden;} </style> """ st.markdown(hide_st_style, unsafe_allow_html=True)