9 lines
251 B
Python
9 lines
251 B
Python
import streamlit as st
|
|
from pathlib import Path
|
|
|
|
|
|
def load_css():
|
|
css_path = Path(__file__).parent.parent / ".streamlit" / "style.css"
|
|
if css_path.exists():
|
|
st.markdown(f"<style>{css_path.read_text()}</style>", unsafe_allow_html=True)
|