Add local transition to overlay

This commit is contained in:
Justin Edmund 2023-06-30 13:08:40 -07:00
parent 5caca71931
commit 4dcbb33feb

View file

@ -18,4 +18,14 @@
backdrop-filter: blur(5px) saturate(100%) brightness(80%) opacity(0); backdrop-filter: blur(5px) saturate(100%) brightness(80%) opacity(0);
background: rgba(0, 0, 0, 0.6); background: rgba(0, 0, 0, 0.6);
} }
@keyframes fadeInFilter {
from {
backdrop-filter: blur(5px) saturate(100%) brightness(80%) opacity(0);
}
to {
backdrop-filter: blur(5px) saturate(100%) brightness(80%) opacity(1);
}
}
} }