How to disable vertical scroll bar

Is it possible to disable the main vertical scroll bar of streamlit ?

I have tried the code bellow, but no success yet:

        st.markdown('''
            <style>
            body {      
            overflow-y: hidden; 
            overflow-x: hidden; 
            }
            </style>
            ''', unsafe_allow_html=True)

Hey @Renan_Nogueira1,

Have you tried the following CSS?

css = '''
<style>
section.main > div:has(~ footer ) {
    padding-bottom: 5px;
}
</style>
'''
st.markdown(css, unsafe_allow_html=True)

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.