fix: glass instant, content fades in — backdrop and blur separate from animation

This commit is contained in:
Usman Baig
2026-03-26 00:10:40 +01:00
parent 3e603c77a9
commit dc867e84f4
2 changed files with 16 additions and 9 deletions

View File

@@ -107,4 +107,13 @@
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.animate-fade-in {
animation: fadeIn 150ms ease-out;
}
}