Update app.py
Browse files
app.py
CHANGED
@@ -5,10 +5,11 @@ from streamlit_option_menu import option_menu
|
|
5 |
|
6 |
with st.sidebar:
|
7 |
selected=option_menu(
|
8 |
-
menu_title = "SBS Mapper",
|
9 |
options = ["Chapters for selection", "DEMO for text entry", "DEMO for file upload (coming)", "About the app"],
|
10 |
icons = ["book", "keyboard", "upload", "info"],
|
11 |
menu_icon = "receipt",
|
12 |
default_index = 0,
|
|
|
13 |
)
|
14 |
st.sidebar.text("Project by JA-RAD")
|
|
|
5 |
|
6 |
with st.sidebar:
|
7 |
selected=option_menu(
|
8 |
+
menu_title = "SBS V2.0 Mapper",
|
9 |
options = ["Chapters for selection", "DEMO for text entry", "DEMO for file upload (coming)", "About the app"],
|
10 |
icons = ["book", "keyboard", "upload", "info"],
|
11 |
menu_icon = "receipt",
|
12 |
default_index = 0,
|
13 |
+
orientation = "horizontal"
|
14 |
)
|
15 |
st.sidebar.text("Project by JA-RAD")
|