feat: polish app loading screen and home section emphasis
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m52s

Refine the global loading experience to feel smoother and less flashy while keeping brand accents. Simplify the home continue-reading highlight by styling the section header instead of using a heavy card wrapper.
This commit is contained in:
2026-03-01 22:01:56 +01:00
parent fdc9da7f8f
commit 4288e4c541
5 changed files with 88 additions and 12 deletions

View File

@@ -164,4 +164,17 @@ body.no-pinch-zoom * {
.animate-fade-in {
animation: fade-in 0.3s ease-in forwards;
}
@keyframes loader-slide {
0% {
transform: translateX(-120%);
}
100% {
transform: translateX(320%);
}
}
.animate-loader-slide {
animation: loader-slide 1.25s ease-in-out infinite;
}
}