Update app.py
Browse files
app.py
CHANGED
|
@@ -3,8 +3,8 @@ import streamlit as st
|
|
| 3 |
st.set_page_config(
|
| 4 |
page_title="Ligand Discovery",
|
| 5 |
page_icon=":home:",
|
| 6 |
-
layout="
|
| 7 |
-
initial_sidebar_state="
|
| 8 |
)
|
| 9 |
|
| 10 |
st.markdown("""
|
|
@@ -25,9 +25,10 @@ hide_streamlit_style = """
|
|
| 25 |
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
| 26 |
|
| 27 |
st.title('Welcome to Ligand Discovery!')
|
| 28 |
-
cols = st.columns([0.5, 0.5])
|
| 29 |
-
col = cols[0]
|
| 30 |
-
col.markdown(
|
|
|
|
| 31 |
'''
|
| 32 |
This portal enables exploration of a large scale fragment-based chemoproteomics screening data.
|
| 33 |
|
|
@@ -48,7 +49,7 @@ Cite: [Offensperger et al., Science (2024)](https://doi.org/10.1126/science.adk5
|
|
| 48 |
'''
|
| 49 |
)
|
| 50 |
|
| 51 |
-
cols[1].image("1.jpg")
|
| 52 |
|
| 53 |
st.divider()
|
| 54 |
|
|
|
|
| 3 |
st.set_page_config(
|
| 4 |
page_title="Ligand Discovery",
|
| 5 |
page_icon=":home:",
|
| 6 |
+
layout="centered", # "wide"
|
| 7 |
+
initial_sidebar_state="collapsed"
|
| 8 |
)
|
| 9 |
|
| 10 |
st.markdown("""
|
|
|
|
| 25 |
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
| 26 |
|
| 27 |
st.title('Welcome to Ligand Discovery!')
|
| 28 |
+
# cols = st.columns([0.5, 0.5])
|
| 29 |
+
# col = cols[0]
|
| 30 |
+
# col.markdown(
|
| 31 |
+
st.markdown(
|
| 32 |
'''
|
| 33 |
This portal enables exploration of a large scale fragment-based chemoproteomics screening data.
|
| 34 |
|
|
|
|
| 49 |
'''
|
| 50 |
)
|
| 51 |
|
| 52 |
+
# cols[1].image("1.jpg")
|
| 53 |
|
| 54 |
st.divider()
|
| 55 |
|