Anne31415 commited on
Commit
61910b2
1 Parent(s): c7ab214

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -17
app.py CHANGED
@@ -118,23 +118,10 @@ def main():
118
  """, unsafe_allow_html=True)
119
 
120
  with col2:
121
- # Align the image to the center of the column
122
- st.markdown("""
123
- <style>
124
- .logo {
125
- display: flex;
126
- align-items: center; /* This will vertically center the logo in the column */
127
- height: 100%;
128
- }
129
- img {
130
- vertical-align: middle; /* Align the image vertically */
131
- }
132
- </style>
133
- <div class="logo">
134
- <img src="BinDoc Logo (Quadratisch).png" alt="BinDocs Logo" width="100%"> /* Adjust the path and size as needed */
135
- </div>
136
- """, unsafe_allow_html=True)
137
-
138
 
139
 
140
 
 
118
  """, unsafe_allow_html=True)
119
 
120
  with col2:
121
+ # Align the image to the center of the column
122
+ st.image("BinDoc Logo (Quadratisch).png", use_column_width=True)
123
+
124
+
 
 
 
 
 
 
 
 
 
 
 
 
 
125
 
126
 
127