File size: 179 Bytes
3f940cd
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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)