global.css
.expand-horizontally {
animation: expand-horizontally 0.6s ease-out both;
}
@keyframes expand-horizontally {
0% {
transform: scaleX(0);
}
100% {
transform: scaleX(1);
}
} Based on @Ibelick
Designed with ♥ by @AdrianGerman