Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -29,6 +29,7 @@ footer {visibility: hidden;}
|
|
| 29 |
"""
|
| 30 |
|
| 31 |
css = """
|
|
|
|
| 32 |
.chat-message {
|
| 33 |
background-color: #f0f2f6;
|
| 34 |
border-radius: 20px;
|
|
@@ -43,7 +44,7 @@ css = """
|
|
| 43 |
}
|
| 44 |
|
| 45 |
background: linear-gradient(to right, #56CCF2, #2F80ED);
|
| 46 |
-
|
| 47 |
"""
|
| 48 |
|
| 49 |
st.markdown(css,unsafe_allow_html=True)
|
|
|
|
| 29 |
"""
|
| 30 |
|
| 31 |
css = """
|
| 32 |
+
<style>
|
| 33 |
.chat-message {
|
| 34 |
background-color: #f0f2f6;
|
| 35 |
border-radius: 20px;
|
|
|
|
| 44 |
}
|
| 45 |
|
| 46 |
background: linear-gradient(to right, #56CCF2, #2F80ED);
|
| 47 |
+
</style>
|
| 48 |
"""
|
| 49 |
|
| 50 |
st.markdown(css,unsafe_allow_html=True)
|