rewardedsoups / utils.py
alexrame
[First commit]
0467ec9
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)