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

(feat): added share window opening animation and minnor icon styling fix

This commit is contained in:
2023-11-24 21:33:27 +05:30
parent 4809a012c4
commit 63e53fc773
4 changed files with 49 additions and 13 deletions

View File

@@ -196,6 +196,24 @@ background: #38BDF8;
}
}
.floatingshare-window-show {
display: flex;
animation: shareWindowShow 0.5s ease-in-out;
}
@keyframes shareWindowShow {
from {
width: 25vw;
height: 30vh;
opacity: 0;
}
to {
width: 50vw;
height: 60vh;
opacity: 1;
}
}
@media only screen and (max-width: 768px) {
@keyframes searchWindowShow {
@@ -210,4 +228,17 @@ background: #38BDF8;
opacity: 1;
}
}
@keyframes shareWindowShow {
from {
width: 25vw;
height: 30vh;
opacity: 0;
}
to {
width: 90vw;
height: 45vh;
opacity: 1;
}
}
}