rewardedsoups / utils.py
alexrame
wip
dee031c
raw
history blame contribute delete
No virus
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)