1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 21:43:06 +05:30

(refactor): improved search window responsiveness (feat): added page shotcuts in search

This commit is contained in:
2023-11-07 22:47:12 +05:30
parent 5e6e9c801b
commit ee0c319efd
4 changed files with 185 additions and 5 deletions

View File

@@ -186,12 +186,28 @@ background: #38BDF8;
@keyframes searchWindowShow {
from {
width: 25vw;
min-height: 30vh;
height: 30vh;
opacity: 0;
}
to {
width: 44vw;
min-height: 60vh;
height: 60vh;
opacity: 1;
}
}
@media only screen and (max-width: 768px) {
@keyframes searchWindowShow {
from {
width: 25vw;
height: 30vh;
opacity: 0;
}
to {
width: 90vw;
height: 60vh;
opacity: 1;
}
}
}