Léo Bourrel
fix: udpate static data + import icons from cdn path
decc199
raw
history blame
191 Bytes
import streamlit as st
def load_css():
with open("sorbobotapp/static/styles.css", "r") as f:
css = f"<style>{f.read()}</style>"
st.markdown(css, unsafe_allow_html=True)