Skip to content

Instantly share code, notes, and snippets.

@shopifypartners
Last active July 29, 2019 10:17
Show Gist options
  • Save shopifypartners/2b3a31b9287503939d38a04f7314132c to your computer and use it in GitHub Desktop.
Save shopifypartners/2b3a31b9287503939d38a04f7314132c to your computer and use it in GitHub Desktop.
Subtle animation for underlined navigation links - https://www.shopify.com/partners/blog/text-animation-css
li a{
position: relative;
&:before {
content: "" ;
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: #000000;
visibility: visible;
transform: scaleX(0);
transition: all 0.3s;
}
&:hover:before {
visibility: visible;
transform: scaleX(0.75);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment