Show a loading bar when checkout is happening (#249)

This commit is contained in:
Will Chen
2025-05-26 11:51:00 -07:00
committed by GitHub
parent 2bb8902b08
commit cdf2f5d772
5 changed files with 65 additions and 2 deletions

View File

@@ -280,3 +280,16 @@
width: 0;
}
}
@keyframes marquee {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(200%);
}
}
.animate-marquee {
animation: marquee 2s linear infinite;
}