streamlit-extras
streamlit-extras copied to clipboard
🐛 [BUG] - bottom() doesn't respect sidebar
Description
I'd like to add text to the bottom of the sidebar. However, putting a bottom container in the sidebar, moves the container to the bottom of the content window.
Reproduction steps
- Create the following app:
import streamlit as st
from streamlit_extras.bottom_container import bottom
st.write("Hello World")
with st.sidebar:
st.write("This is a sidebar")
with bottom():
st.write("This should be in the bottom of the sidebar.")
- run the app
Version of streamlit
1.36.0
Version of streamlit-extras
0.4.3