Spaces:
Build error
Build error
File size: 266 Bytes
e734794 |
1 2 3 4 5 6 7 8 9 10 11 |
import streamlit as st
def local_css(css_path):
with open(css_path) as f:
st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
def remote_css(css_url):
st.markdown(f'<link href="{css_url}" rel="stylesheet">', unsafe_allow_html=True)
|