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:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user