Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ class Message:
|
|
14 |
message: str
|
15 |
|
16 |
def load_css():
|
17 |
-
with open("
|
18 |
css = f"<style>{f.read()}</style>"
|
19 |
st.markdown(css, unsafe_allow_html=True)
|
20 |
|
|
|
14 |
message: str
|
15 |
|
16 |
def load_css():
|
17 |
+
with open("styles.css", "r") as f:
|
18 |
css = f"<style>{f.read()}</style>"
|
19 |
st.markdown(css, unsafe_allow_html=True)
|
20 |
|