Mykes commited on
Commit
af81e42
β€’
1 Parent(s): 80460d6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py CHANGED
@@ -32,6 +32,17 @@ st.markdown("""
32
  padding: 0 1.5rem;
33
  color: #fff;
34
  }
 
 
 
 
 
 
 
 
 
 
 
35
  </style>
36
  """, unsafe_allow_html=True)
37
 
 
32
  padding: 0 1.5rem;
33
  color: #fff;
34
  }
35
+ .chat-message.user::before {
36
+ content: "πŸ‘€";
37
+ font-size: 1.5em;
38
+ margin-right: 0.5em;
39
+ }
40
+
41
+ .chat-message.bot::before {
42
+ content: "πŸ€–";
43
+ font-size: 1.5em;
44
+ margin-right: 0.5em;
45
+ }
46
  </style>
47
  """, unsafe_allow_html=True)
48