Header Nav - Link Underline

 avatar
LBautista
css
18 days ago
737 B
1
Indexable
Never
/*START - link underline - WB Matthew*/
div#modal-global-contact-us{
    div.contact-popup__info a {
        position: relative!important;
        &:before, &:after{
            transition: 0.4s;
            text-decoration: none!important;
            line-height: 1;
            content: """";
            height: 1px;
            position: absolute!important;
            bottom: 0;
            left: 0;
        }
        &:before {
            width: 100%!important;
            background-color: #000!important;
        }
        &:after{
            width: 0%!important;
            background-color: #005890!important; 
        }
        &:hover:after{
            width: 100%!important;
        }
    }
}
/*END - link underline*/
Leave a Comment