Léo Bourrel
feat: move to subfolder sorbobotapp
b7f6a3a
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)