Files
co_app/app/tools/load_css.py
2025-12-10 22:52:22 +01:00

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)