How to disable vertical scroll bar

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)