Skip to content

Instantly share code, notes, and snippets.

@dataprofessor
Created July 5, 2023 04:40
Show Gist options
  • Save dataprofessor/d44ce620766862291bdaa723f50b59b6 to your computer and use it in GitHub Desktop.
Save dataprofessor/d44ce620766862291bdaa723f50b59b6 to your computer and use it in GitHub Desktop.
Hiding the red gradient bar at the top of a Streamlit app
import streamlit as st
st.markdown("""
<style>
[data-testid="stDecoration"] {
display: none;
}
</style>""",
unsafe_allow_html=True)
st.title('🎈 Test')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment