Spaces:
Runtime error
Runtime error
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +3 -0
src/streamlit_app.py
CHANGED
|
@@ -2,6 +2,9 @@ import streamlit as st
|
|
| 2 |
import pandas as pd
|
| 3 |
import plotly.express as px
|
| 4 |
|
|
|
|
|
|
|
|
|
|
| 5 |
st.set_page_config(layout="wide")
|
| 6 |
st.title("Thread Pulse")
|
| 7 |
st.write(
|
|
|
|
| 2 |
import pandas as pd
|
| 3 |
import plotly.express as px
|
| 4 |
|
| 5 |
+
with open("custom.css") as f:
|
| 6 |
+
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
|
| 7 |
+
|
| 8 |
st.set_page_config(layout="wide")
|
| 9 |
st.title("Thread Pulse")
|
| 10 |
st.write(
|