gndclouds/11-11

Slow down hover State annotation for links

gndclouds opened this issue · 1 comments

Slow down hover State annotation for links

To change the speed of the hover state annotation for links:

/assets/main.scss

a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #ff0dbf;
bottom: 5px;
transform: scale(0, 2);
transition: transform 1s;
transform-origin: left top;
}

Change the transition time argument.