(Influencer) Change 4 dots to 3 lines Menu

 avatar
Ian
css
2 years ago
442 B
7
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...