Skip to content

Commit

Permalink
logos in home page and side bar
Browse files Browse the repository at this point in the history
  • Loading branch information
axelwalter committed Jun 5, 2024
1 parent 6be9859 commit 093c292
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Home.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

params = page_setup(page="main")

st.image("assets/umetaflow-logo.png", width=300)
st.markdown(
"""
## A universal metabolomics tool
Expand Down Expand Up @@ -36,6 +35,7 @@
mime="archive/zip",
type="primary"
)
# st.image("assets/umetaflow-app-overview.png", width=800)

st.markdown(
"""
Expand Down
5 changes: 3 additions & 2 deletions src/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,9 @@ def change_workspace():
if help_text:
st.info(help_text)
c1, c2 = st.columns(2)
c1.image("assets/pyopenms_transparent_background.png")
c2.image("assets/umetaflow-logo.png")
c1.image("assets/umetaflow-logo.png")
c2.markdown("##")
c2.image("assets/pyopenms_transparent_background.png")
return params

def v_space(n: int, col=None) -> None:
Expand Down

0 comments on commit 093c292

Please sign in to comment.