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