Streamlit button Sizing

So i wanted to change the steamlit button heights and the only way i was able to change it was by using a markdown

`st.markdown("""<style> button { height: 56px !important; padding-bottom:5px !important; } </style>""", unsafe_allow_html=True)`

but this sets the size for every button on the page which i dont want, is there a way to target specific buttons like those found inside an st.container or something like that

any help would be much appreciated, thx

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