Anne31415 commited on
Commit
93ae73a
·
1 Parent(s): e3e292d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -98,7 +98,7 @@ def main():
98
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
99
 
100
  # Main content
101
- col1, col2 = st.columns([4, 1]) # Adjust the ratio to your liking
102
 
103
  with col1:
104
  st.title("Welcome to BinDocs ChatBot!")
@@ -106,7 +106,7 @@ def main():
106
  with col2:
107
  # Load and display the image in the right column, which will be the top-right corner of the page
108
  image = Image.open('BinDoc Logo (Quadratisch).png')
109
- st.image(image, use_column_width='always')
110
 
111
 
112
 
 
98
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
99
 
100
  # Main content
101
+ col1, col2 = st.columns([8, 20]) # Adjust the ratio to your liking
102
 
103
  with col1:
104
  st.title("Welcome to BinDocs ChatBot!")
 
106
  with col2:
107
  # Load and display the image in the right column, which will be the top-right corner of the page
108
  image = Image.open('BinDoc Logo (Quadratisch).png')
109
+ st.image(image, width=100))
110
 
111
 
112