Setting certain text-inputs width

Hello, I have several text-inputs and I want to be able to set/clear their values on certain triggers (say, a button). the following code does the job, but the text-input has full-width. Is there any way i can set custom width?

emp = st.empty()
transport = emp.text_input('Transport', 0)
if st.button('Set transport to 10'):
    transport = emp.text_input('Transport', 10)

Normally it goes smth like this:

col1, col2 = st.beta_columns([2, 1])

but replacing ‘emp’ with ‘col1’ doesn’t seem to work…

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