The columns feature is awesome. I wonder if there is a way to control the column widths. In the example below, only half of the space is used. I would prefer to have the buttons right aligned and the texts to take up more space.
here is my code:
for index, row in self.projects.iterrows():
col1, col2 = st.beta_columns(2)
with col1:
st.markdown(f"**{row['name']}**({row['short_name']})", unsafe_allow_html=True)
st.markdown(row['description'])
with col2:
if st.button(label='Open',key=row['id']):
pass