Hi,
I am displaying a set of checkboxes which are all listed in one col:
button_col, _= st.columns([1, 10])
with button_col:
st.checkbox("text")
st.checkbox("text1")
st.checkbox("text2")
as you can see the checkboxes have vertical .spaces in between.
I wanted to know, if there is a way to remove or reduce the spaces somehow.