You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using bottom container, the app scrolls automatic to the bottom if the page is really long. Is there already a solution to this problem?
Reproduction steps
import streamlit as st
from streamlit_extras.bottom_container import bottom
foriin range(999):
st.write(i)
with bottom():
st.write("This is the bottom container")
st.text_input("This is a text input in the bottom container")
### Screenshots
_No response_
### Logs
_No response_
### Version of streamlit
1.35.0
### Version of streamlit-extras
0.4.2
The text was updated successfully, but these errors were encountered:
Description
When using bottom container, the app scrolls automatic to the bottom if the page is really long. Is there already a solution to this problem?
Reproduction steps
The text was updated successfully, but these errors were encountered: