Would like to add some non-functional details like user info, env, copyright etc. to the complete bottom of the sidebar that is auto generated by multipage app.
Tried to use st.sidebar.empty() st.sidebar.write(“—”) etc. but the widgets/text not getting docked to bottom of the sidebar.
with st.sidebar.container(height=640, border=False):
st.write("Put your sidebar elements here... #1")
st.write("Put your sidebar elements here... #2")
st.write("Put your sidebar elements here... #3")
st.sidebar.write("Put your footer info here...")