AdritRao commited on
Commit
f18bc3f
·
1 Parent(s): 42b7778

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -17,13 +17,7 @@ logo_image = Image.open("logo.png")
17
  # Set the logo image to display at the top of the app
18
  logo_width = 120 # Adjust this value to your preferred size
19
 
20
- # Create a column to center the logo
21
- st.write("")
22
- col1, col2, col3 = st.beta_columns([1, 2, 1])
23
-
24
- # Add the logo image to the center column
25
- with col2:
26
- st.image(logo_image, use_column_width=False, width=logo_width)
27
 
28
  subprocess_executed = False
29
 
 
17
  # Set the logo image to display at the top of the app
18
  logo_width = 120 # Adjust this value to your preferred size
19
 
20
+ st.image(logo_image, use_column_width=True)
 
 
 
 
 
 
21
 
22
  subprocess_executed = False
23