(Influencer) Change 4 dots to 3 lines Menu

Ian avatar
Ian
css
12/05/2023 1:08 AM
592 B
11
Indexable
/*Header menu icon to hamburger*/
#global-navbar {
    .hamburger {
        margin-top: 8px;
        border-top: 2px solid #ffffff;
        &::before, 
        &::after {
            position: absolute;
            content: '';
            height: 2px;
            border-top: 2px solid #ffffff;
            left: 0;
            width: 100%;
            border-right: none;
        }
    }
}
/*Header menu icon to hamburger*/
Editor is loading...