gabrieltempass / streamlit-navigation-bar

A component that allows you to place a navigation bar in your Streamlit app.
https://streamlit.io/
MIT License
112 stars 11 forks source link

Is it possible to make stStatusWidget visible? #13

Open czimmerman36 opened 3 months ago

czimmerman36 commented 3 months ago

Checklist

Description

I am trying to keep the default status widget visible and integrated within the navbar. I have tried this running this code after initiating the navbar, but it does not work:

        st.markdown('''
        <style>
        div[class="stStatusWidget"] {
            visibility: visible;
        }
        </style>
        ''', unsafe_allow_html=True)

Is there a workaround?