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)