sparrow-ui-itn / tools /utilities.py
ITNovaML's picture
Duplicate from katanaml-org/sparrow-ui
e79ac05
raw
history blame contribute delete
No virus
430 Bytes
import streamlit as st
def load_css():
with open("tools/style.css") as f:
st.markdown('<style>{}</style>'.format(f.read()), unsafe_allow_html=True)
st.markdown(
'<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">',
unsafe_allow_html=True)