Update app.py
Browse files
app.py
CHANGED
|
@@ -39,12 +39,11 @@ st.markdown(
|
|
| 39 |
)
|
| 40 |
|
| 41 |
# Display the image in the corner
|
| 42 |
-
image_path = "/Problems.png" #
|
| 43 |
st.markdown(
|
| 44 |
-
f'<img src="
|
| 45 |
unsafe_allow_html=True,
|
| 46 |
)
|
| 47 |
-
|
| 48 |
# Sidebar Configuration
|
| 49 |
with st.sidebar:
|
| 50 |
st.title("📂 Dubs Recall")
|
|
|
|
| 39 |
)
|
| 40 |
|
| 41 |
# Display the image in the corner
|
| 42 |
+
image_path = "/Problems.png" # Static path to the image
|
| 43 |
st.markdown(
|
| 44 |
+
f'<img src="{image_path}" class="corner-image">',
|
| 45 |
unsafe_allow_html=True,
|
| 46 |
)
|
|
|
|
| 47 |
# Sidebar Configuration
|
| 48 |
with st.sidebar:
|
| 49 |
st.title("📂 Dubs Recall")
|