VN_laws_qa / load_css.py
wanderer2k1's picture
f
9833a80
raw
history blame contribute delete
No virus
162 Bytes
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)