alexrame
wip
80ff8f6
raw
history blame
152 Bytes
import streamlit as st
def inject_custom_css(file):
with open(file) as f:
st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)