Spaces:
Sleeping
Sleeping
File size: 380 Bytes
b586854 e80e35a b586854 e80e35a b586854 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
from page_selector import remove_seasonal_pages
from login_component import get_authorization_button
def local_css(file_name):
with open(file_name) as f:
st.markdown("<style>{}</style>".format(f.read()), unsafe_allow_html=True)
def common_page_config():
get_authorization_button()
remove_seasonal_pages()
local_css("style.css")
|