File size: 556 Bytes
b4e9c3f a2d83b8 b4e9c3f 56fd0b1 6c6e557 b1bc16f 4f10561 6c6e557 56fd0b1 b4e9c3f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
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
# reduce space to the top
st.markdown("""
<style>
.block-container {
padding-top: 1rem;
padding-bottom: 4rem;
padding-left: 3rem;
padding-right: 3rem;
}
</style>
""", unsafe_allow_html=True)
# NAVBAR
navbar = show_navbar()
|