1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 23:59:35 +05:30

(feat): implemented basic search window panel with animation

This commit is contained in:
2023-11-07 19:40:42 +05:30
parent 0d226235f5
commit 5e6e9c801b
4 changed files with 96 additions and 17 deletions

View File

@@ -176,4 +176,22 @@ background: #38BDF8;
to {
backdrop-filter: blur(16px);
}
}
.floatingsearch-window-show {
display: flex;
animation: searchWindowShow 0.5s ease-in-out;
}
@keyframes searchWindowShow {
from {
width: 25vw;
min-height: 30vh;
opacity: 0;
}
to {
width: 44vw;
min-height: 60vh;
opacity: 1;
}
}