Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,14 +12,14 @@ def main():
|
|
| 12 |
st.text("A BR CREATION")
|
| 13 |
#st.image("chatbot.jpg", caption="Chatbot", width=178)
|
| 14 |
|
| 15 |
-
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
| 23 |
"""
|
| 24 |
<style>
|
| 25 |
div[data-testid="stImage"] {
|
|
|
|
| 12 |
st.text("A BR CREATION")
|
| 13 |
#st.image("chatbot.jpg", caption="Chatbot", width=178)
|
| 14 |
|
| 15 |
+
#Create an empty container
|
| 16 |
+
container = st.empty()
|
| 17 |
|
| 18 |
+
# Add the image with specified width
|
| 19 |
+
container.image("chatbot.jpg", caption="Chatbot", width=178, use_column_width=False)
|
| 20 |
|
| 21 |
+
# Apply CSS to align the image to the right corner
|
| 22 |
+
container.markdown(
|
| 23 |
"""
|
| 24 |
<style>
|
| 25 |
div[data-testid="stImage"] {
|