Disable scrollbar

You can use css to reduce the empty space that is the padding before the footer. Try the at the end of your page:

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