refactor: relocate components to app directory structure

This commit is contained in:
2026-06-09 14:43:10 +08:00
parent f060301c24
commit cda55c8f9b
61 changed files with 19 additions and 27 deletions
@@ -0,0 +1,28 @@
.wrapper {
position: relative;
width: 100%;
height: 4px;
border-radius: var(--radius-full);
background: rgba(255, 255, 255, 0.1);
overflow: hidden;
}
.bar {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 30%;
border-radius: var(--radius-full);
background: linear-gradient(90deg, var(--color-accent), var(--color-facebook-button-gradient-end));
animation: progress 1.5s ease-in-out infinite;
}
@keyframes progress {
0% {
left: -30%;
}
100% {
left: 100%;
}
}