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