Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|