|
import streamlit as st |
|
|
|
hide_streamlit_style = """ |
|
<style> |
|
|
|
div[data-testid="stStatusWidget"]{ |
|
visibility: visible; |
|
height: 400px; |
|
position: sticky; |
|
} |
|
div[data-testid="stBaseButton-header"]{ |
|
visibility: visible; |
|
height: auto; |
|
position: sticky; |
|
} |
|
div[data-testid="stToolbar"]{ |
|
visibility: visible; |
|
height: auto; |
|
position: sticky; |
|
} |
|
div[data-testid="stDecoration"]{ |
|
visibility: visible; |
|
height: auto; |
|
position: sticky; |
|
} |
|
|
|
</style> |
|
""" |
|
|
|
|
|
|
|
st.logo(image="images/menu_book_60dp_75FBFD.png") |
|
st.sidebar.title("SBS V2.0 Mapper") |
|
st.sidebar.subheader("(work in progress)") |
|
st.sidebar.text("Demo by JA-RAD") |
|
|
|
|
|
type_text_page = st.Page( |
|
page="pages/type_text.py", |
|
title="DEMO (work in progress)", |
|
icon=":material/keyboard:", |
|
default=False,) |
|
|
|
|
|
pg = st.navigation(pages=[type_text_page]) |
|
|
|
pg.run() |