File size: 718 Bytes
1da5a00
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import streamlit as st
def add_logo():
    st.markdown(
        """

        <style>

            [data-testid="stSidebarNav"] {

                background-image: url(http://placekitten.com/200/200);

                background-repeat: no-repeat;

                #padding-top: 120px;

                background-position: 20px 20px;

            }

            [data-testid="stSidebarNav"]::before {

                content: "MO3ALIMI sidebar";

                margin-left: 20px;

                margin-top: 20px;

                font-size: 29px;

                position: relative;

                top: 0px;

            }

        </style>

        """,
        unsafe_allow_html=True,
    )
add_logo()