File size: 348 Bytes
48e2ae8
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st

def load_css_files():
    """Load all CSS files and apply them to the Streamlit app"""
    css_files = ['layout.css', 'buttons.css', 'story_output.css']
    
    for css_file in css_files:
        with open(f"src/styles/{css_file}") as f:
            st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)