Hello,
I have used like and dislike buttons to create like dislike option in my Streamlit app.
The problem that I am facing is that while it runs well on normal screen, once accessing app from Mobile the buttons will change positions to be one on top of each-other rather than one beside one another.
Is there a solution that can help me fix this minor issue?
col1, col2, col3, col4 = st.columns([3, 3,0.5,0.5])
with col3:
with st.container():
st.button(":thumbsup:",on_click="do something")
with col4:
with st.container():
st.button(":thumbsdown:",on_click="do something")
col3.write(' ')
col4.write(' ')