iloncka commited on
Commit
eac75f3
1 Parent(s): 09ac51e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -23,13 +23,12 @@ DEFAULT_QUESTION_AT_STARTUP = os.getenv("DEFAULT_QUESTION_AT_STARTUP", "What's t
23
  DEFAULT_ANSWER_AT_STARTUP = os.getenv("DEFAULT_ANSWER_AT_STARTUP", "Paris")
24
 
25
  def place_header_center(text, lottie_data):
26
- cgap1, ctitle, cgap2 = st.columns([3, 3, 1])
27
- with cgap1:
28
  st_lottie(lottie_data, height=250)
29
- with ctitle:
30
  st.title(text)
31
- with cgap2:
32
- st.write("")
33
 
34
 
35
  @st.experimental_memo
 
23
  DEFAULT_ANSWER_AT_STARTUP = os.getenv("DEFAULT_ANSWER_AT_STARTUP", "Paris")
24
 
25
  def place_header_center(text, lottie_data):
26
+ img, title= st.columns()
27
+ with img:
28
  st_lottie(lottie_data, height=250)
29
+ with title:
30
  st.title(text)
31
+
 
32
 
33
 
34
  @st.experimental_memo