Skip to content

Commit

Permalink
Removed the columns that the option expanders were under to help with…
Browse files Browse the repository at this point in the history
… longer labels in the page links.
  • Loading branch information
blakeaw committed Oct 25, 2024
1 parent c1760fd commit fad1bb4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pages/home.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,20 @@

widgets.blank_divider_blank()
st.subheader("What would you like to do?")
left, center, right = st.columns(3)
#left, center, right = st.columns(3)

with left:
with st.expander("Compartmental Modeling", icon=":material/widgets:"):
widgets.compartmental_options()
widgets.also_edit()
#with left:
with st.expander("Compartmental Modeling", icon=":material/widgets:"):
widgets.compartmental_options()
widgets.also_edit()

with center:
with st.expander("Non-compartmental Analysis", icon=":material/query_stats:"):
widgets.nca_options()
#with center:
with st.expander("Non-compartmental Analysis", icon=":material/query_stats:"):
widgets.nca_options()

with right:
with st.expander("Pharmacodynamic Analysis", icon=":material/bid_landscape:"):
widgets.pdanalysis_options()
#with right:
with st.expander("Pharmacodynamic Analysis", icon=":material/bid_landscape:"):
widgets.pdanalysis_options()

from importlib.metadata import version

Expand Down

0 comments on commit fad1bb4

Please sign in to comment.