Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -13,27 +13,7 @@ from PIL import Image
|
|
13 |
|
14 |
logo_image = Image.open("logo.png")
|
15 |
|
16 |
-
|
17 |
-
logo_width = 80 # Adjust this value to your preferred size
|
18 |
-
|
19 |
-
# Center the logo image and title using CSS
|
20 |
-
st.markdown(
|
21 |
-
f"""
|
22 |
-
<style>
|
23 |
-
.centered {{
|
24 |
-
display: flex;
|
25 |
-
flex-direction: column;
|
26 |
-
align-items: center;
|
27 |
-
text-align: center;
|
28 |
-
}}
|
29 |
-
</style>
|
30 |
-
""",
|
31 |
-
unsafe_allow_html=True,
|
32 |
-
)
|
33 |
-
|
34 |
-
# Create a container for the logo and title
|
35 |
-
st.write("")
|
36 |
-
st.image(logo_image, width=logo_width)
|
37 |
|
38 |
subprocess_executed = False
|
39 |
|
|
|
13 |
|
14 |
logo_image = Image.open("logo.png")
|
15 |
|
16 |
+
st.image(logo_image, width=90)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
subprocess_executed = False
|
19 |
|