Peerlist like Hover effect

PHOTO EMBED

Mon Oct 10 2022 17:04:01 GMT+0000 (Coordinated Universal Time)

Saved by @clumsycoder #css

.animate-underline {
    display: inline-block;
    position: relative;
}

.animate-underline:after {
    content: " ";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #00ffff;
    transform-origin: bottom right;
    transition: transform .25s ease-out
}

.animate-underline:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left
}
content_copyCOPY