The-Adnan-Syed commited on
Commit
f989368
·
verified ·
1 Parent(s): 5319461

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -3
app.py CHANGED
@@ -23,6 +23,12 @@ hide_streamlit_style = """
23
  #MainMenu {visibility: hidden;}
24
  footer {visibility: hidden;}
25
  /* style.css */
 
 
 
 
 
 
26
  .chat-message {
27
  background-color: #f0f2f6;
28
  border-radius: 20px;
@@ -35,13 +41,13 @@ footer {visibility: hidden;}
35
  color: white;
36
  background-color: #4CAF50;
37
  }
38
- background: linear-gradient(to right, #56CCF2, #2F80ED);
39
-
40
 
41
- </style>
42
 
43
  """
44
 
 
 
45
  api = os.environ['api']
46
 
47
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
 
23
  #MainMenu {visibility: hidden;}
24
  footer {visibility: hidden;}
25
  /* style.css */
26
+
27
+ </style>
28
+
29
+ """
30
+
31
+ css = """
32
  .chat-message {
33
  background-color: #f0f2f6;
34
  border-radius: 20px;
 
41
  color: white;
42
  background-color: #4CAF50;
43
  }
 
 
44
 
45
+ background: linear-gradient(to right, #56CCF2, #2F80ED);
46
 
47
  """
48
 
49
+ st.markdown(css,unsafe_allow_html=True)
50
+
51
  api = os.environ['api']
52
 
53
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)