blackary / st_pages

An experimental version of Streamlit Multi-Page Apps
MIT License
467 stars 77 forks source link

Font Controllable. #66

Open jourmore opened 1 year ago

jourmore commented 1 year ago

The font is too small and we hope st_pages will add controllable parameters.

danilo-css commented 1 year ago

You can increase font size of sidebar page names currently with Streamlit 1.27.2 with:

    st.markdown("""
        <style>
            /* Increase font size by setting the 18px below to whatever you want */ 
            .st-emotion-cache-j7qwjs {
                font-size: 18px;
                }
        </style>
        """, unsafe_allow_html=True)

Do keep in mind in newer Streamlit versions that css (.st-emotion-cache-j7qwjs) can change and you'll have to adjust your code accordingly.