Jan Mühlnikel
change size of st tabs
56fd0b1
raw
history blame
517 Bytes
import streamlit as st
# PAGE CONFIG
st.set_page_config(
page_title='Development Banks Collaboration Analyzer',
page_icon='📋',
layout='wide',
)
from modules.navbar import show_navbar
import similarity_page
# reduce space to the top
st.markdown("""
<style>
.reportview-container .main .block-container{
padding-top: 2rem; /* Adjust the value as needed */
}
</style>
""", unsafe_allow_html=True)
# NAVBAR
navbar = show_navbar()
#similarity_page.show_multi_matching_page()