Added backdrop on nav

This commit is contained in:
cdricms
2025-02-13 10:42:44 +01:00
parent 2fa6e0b21d
commit c62fbcf85c
2 changed files with 42 additions and 114 deletions

View File

@@ -0,0 +1,15 @@
.animate-header-slide-down-fade {
animation: header-slide-down-fade 1s ease-in-out;
}
@keyframes header-slide-down-fade {
0% {
opacity: 0;
transform: translateY(-16px);
}
to {
opacity: 1;
transform: translateY(0);
}
}