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

(feat): implemented floatingsearchpage warapper in out animation

This commit is contained in:
2023-11-06 21:22:53 +05:30
parent 211d40affc
commit e6190d3339
3 changed files with 26 additions and 7 deletions

View File

@@ -162,4 +162,18 @@ background: #38BDF8;
}
}
}
.flotingbar-window-wrapper-show {
animation: blurWindowWrapper 0.5s ease-in-out;
backdrop-filter: blur(16px);
}
@keyframes blurWindowWrapper {
from {
backdrop-filter: blur(0px);
}
to {
backdrop-filter: blur(16px);
}
}