Align popover with other widgets

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

image

I hardfix using a empty container with a height but it’s not clean :slight_smile:
Thanks !

is the argument vertical_alignment in st.columns what you are looking for?

1 Like

Perfect ! I complety forgot about this β€œnew” feature :slight_smile:
Thank you !

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.