James McCool commited on
Commit
7900a20
·
1 Parent(s): 4088be2

Adjust column layout in portfolio section of app.py: change from 3 to 2 columns for improved UI in the projections display.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -796,7 +796,7 @@ with tab1:
796
  with tab2:
797
  if 'portfolio' in st.session_state and 'projections_df' in st.session_state:
798
  with st.container():
799
- col1, col2 = st.columns(3)
800
  with col1:
801
  if st.button('Reset Portfolio', key='reset_port'):
802
  del st.session_state['working_frame']
 
796
  with tab2:
797
  if 'portfolio' in st.session_state and 'projections_df' in st.session_state:
798
  with st.container():
799
+ col1, col2 = st.columns(2)
800
  with col1:
801
  if st.button('Reset Portfolio', key='reset_port'):
802
  del st.session_state['working_frame']