SorboBot / css.py
leo-bourrel's picture
feat: split css
3f940cd
raw
history blame
179 Bytes
import streamlit as st
def load_css():
with open("static/styles.css", "r") as f:
css = f"<style>{f.read()}</style>"
st.markdown(css, unsafe_allow_html=True)