subreddit-clf-app / load_css.py
yxmauw's picture
app files
4f78275
raw
history blame contribute delete
250 Bytes
"""
https://discuss.streamlit.io/t/are-you-using-html-in-markdown-tell-us-why/96/25
"""
import streamlit as st
def local_css(file_name):
with open(file_name) as f:
st.markdown('<style>{}</style>'.format(f.read()), unsafe_allow_html=True)