Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -48,26 +48,17 @@ def main():
|
|
48 |
# Expander for location names (moved here)
|
49 |
with st.expander("Bus Names for your assistance!!!", expanded=False):
|
50 |
st.write(
|
51 |
-
"Achim Paribahan Bus Route (আছিম পরিবহন), Active Paribahan Bus Route (এক্টিভ পরিবহন), Agradut Bus Route (অগ্রদূত), Airport Bangabandhu Avenue Bus Route(এয়ারপোর্ট বঙ্গবন্ধু এভিনিউ ট্রান্সপোর্ট), Ajmeri Glory Bus Route (আজমেরী গ্লোরী),
|
52 |
)
|
53 |
|
54 |
-
#
|
55 |
-
st.
|
56 |
-
|
57 |
-
|
58 |
-
.
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
margin: 20px;
|
63 |
-
}
|
64 |
-
</style>
|
65 |
-
<div class="bottom-right">
|
66 |
-
<img src="https://drive.google.com/file/d/1ejDbYyzUGoWu0iQBDebA8OMwMSMe5YJn/view?usp=sharing" width="150" height="150" />
|
67 |
-
</div>
|
68 |
-
""",
|
69 |
-
unsafe_allow_html=True
|
70 |
-
)
|
71 |
|
72 |
if __name__ == "__main__":
|
73 |
main()
|
|
|
48 |
# Expander for location names (moved here)
|
49 |
with st.expander("Bus Names for your assistance!!!", expanded=False):
|
50 |
st.write(
|
51 |
+
"Achim Paribahan Bus Route (আছিম পরিবহন), Active Paribahan Bus Route (এক্টিভ পরিবহন), Agradut Bus Route (অগ্রদূত), Airport Bangabandhu Avenue Bus Route(এয়ারপোর্ট বঙ্গবন্ধু এভিনিউ ট্রান্সপোর্ট), Ajmeri Glory Bus Route (আজমেরী গ্লোরী), ..."
|
52 |
)
|
53 |
|
54 |
+
# Layout hack using empty and columns for bottom-right placement
|
55 |
+
col1, col2 = st.columns([1, 6]) # The first column is narrow
|
56 |
+
with col2:
|
57 |
+
# Place the image in the bottom-right of the screen
|
58 |
+
st.image("149656-200.png", width=150, height=150)
|
59 |
+
|
60 |
+
# Add space at the bottom to simulate the "bottom-right" positioning
|
61 |
+
st.markdown("<br><br><br><br>", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
|
63 |
if __name__ == "__main__":
|
64 |
main()
|