Spaces:
Runtime error
Runtime error
File size: 152 Bytes
0467ec9 |
1 2 3 4 5 |
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) |