🚀 release: v3.0.0

This commit is contained in:
Amruth Pillai
2022-03-02 17:44:11 +01:00
parent 2175256310
commit 295172687b
352 changed files with 30932 additions and 0 deletions

View File

@ -0,0 +1,32 @@
.loading {
animation: progress 2s linear infinite;
@apply fixed top-0 z-50;
@apply bg-primary-500 shadow-primary-500/50 h-0.5 w-screen shadow;
}
@keyframes progress {
0% {
left: 0%;
right: 100%;
width: 0;
}
10% {
left: 0%;
right: 75%;
width: 25%;
}
90% {
left: 75%;
right: 0%;
width: 25%;
}
100% {
left: 100%;
right: 0%;
width: 0;
}
}