Hello,
I want to align this two widget, is there a clean way to do this ?
col1, col2, col3 = st.columns([0.5, 0.1, 0.5])
col1.selectbox("π©π»βπ¬β Select a Clinical Trial", 'TEST')
with col3.popover("π Load Config"):
pass
I hardfix using a empty container with a height but itβs not clean
Thanks !