Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -83,6 +83,21 @@ def get_sentiment_label(row):
|
|
| 83 |
|
| 84 |
|
| 85 |
st.set_option('deprecation.showPyplotGlobalUse', False)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
|
| 87 |
|
| 88 |
# Create two columns
|
|
|
|
| 83 |
|
| 84 |
|
| 85 |
st.set_option('deprecation.showPyplotGlobalUse', False)
|
| 86 |
+
st.set_page_config(page_title="Sustainable Shipping and Logistics Advisor", page_icon="GH", initial_sidebar_state="expanded")
|
| 87 |
+
|
| 88 |
+
hide_streamlit_style = """
|
| 89 |
+
<style>
|
| 90 |
+
#MainMenu {visibility: hidden;}
|
| 91 |
+
footer {visibility: hidden;}
|
| 92 |
+
</style>
|
| 93 |
+
"""
|
| 94 |
+
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
| 95 |
+
|
| 96 |
+
css_style = {
|
| 97 |
+
"icon": {"color": "white"},
|
| 98 |
+
"nav-link": {"--hover-color": "grey"},
|
| 99 |
+
"nav-link-selected": {"background-color": "#FF4C1B"},
|
| 100 |
+
}
|
| 101 |
|
| 102 |
|
| 103 |
# Create two columns
|