abanm commited on
Commit
e8c2aa3
·
verified ·
1 Parent(s): 4f38a14

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -9
app.py CHANGED
@@ -26,17 +26,13 @@ import streamlit as st
26
  IMAGE_PATH = "Problems.png"
27
 
28
  st.markdown(
29
- f"""
30
  <div style="display: inline-flex; align-items: center;">
31
- <!-- Adjust the height if you want a larger/smaller logo -->
32
- <img src="{IMAGE_PATH}" alt="logo" style="height: 1.4em; vertical-align: middle;"/>
33
-
34
- <!-- Add some horizontal spacing with margin-left -->
35
- <span style="font-size: 1.4em; margin-left: 0.5em;">
36
- DubsChat
37
- </span>
38
  </div>
39
- """,
40
  unsafe_allow_html=True
41
  )
42
 
 
26
  IMAGE_PATH = "Problems.png"
27
 
28
  st.markdown(
29
+ """
30
  <div style="display: inline-flex; align-items: center;">
31
+ <!-- The comment below won't be displayed, but is valid HTML -->
32
+ <img src="{0}" alt="logo" style="height: 1.4em; vertical-align: middle;"/>
33
+ <span style="font-size: 1.4em; margin-left: 0.5em;">DubsChat</span>
 
 
 
 
34
  </div>
35
+ """.format(IMAGE_PATH),
36
  unsafe_allow_html=True
37
  )
38