leo-bourrel commited on
Commit
94edcbd
·
1 Parent(s): 8706267

style: update CSS & update app title

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. static/styles.css +5 -1
app.py CHANGED
@@ -39,7 +39,7 @@ def on_click_callback():
39
  load_css()
40
  initialize_session_state()
41
 
42
- st.title("Hello Custom CSS Chatbot 🤖")
43
 
44
  chat_placeholder = st.container()
45
  prompt_placeholder = st.form("chat-form")
 
39
  load_css()
40
  initialize_session_state()
41
 
42
+ st.title("Sorbobot - Le futur de la recherche scientifique interactive")
43
 
44
  chat_placeholder = st.container()
45
  prompt_placeholder = st.form("chat-form")
static/styles.css CHANGED
@@ -8,6 +8,10 @@
8
  flex-direction: row-reverse;
9
  }
10
 
 
 
 
 
11
  .chat-bubble {
12
  font-family: "Source Sans Pro", sans-serif, "Segoe UI", "Roboto", sans-serif;
13
  border: 1px solid transparent;
@@ -22,7 +26,7 @@
22
  }
23
 
24
  .human-bubble {
25
- background: linear-gradient(135deg, rgb(0, 178, 255) 0%, rgb(0, 106, 255) 100%);
26
  color: white;
27
  border-radius: 20px;
28
  }
 
8
  flex-direction: row-reverse;
9
  }
10
 
11
+ .appview-container .main .block-container {
12
+ padding-top: 2rem;
13
+ }
14
+
15
  .chat-bubble {
16
  font-family: "Source Sans Pro", sans-serif, "Segoe UI", "Roboto", sans-serif;
17
  border: 1px solid transparent;
 
26
  }
27
 
28
  .human-bubble {
29
+ background: linear-gradient(135deg, rgb(0, 178, 255) 0%, rgb(0, 106, 255) 100%);
30
  color: white;
31
  border-radius: 20px;
32
  }