Animated popups

This commit is contained in:
mauro-balades
2024-04-03 23:23:41 +02:00
parent 559a352aa5
commit d3c8a55976
6 changed files with 32 additions and 17 deletions

View File

@@ -27,3 +27,22 @@ html#main-window > body {
margin-top: 0;
}
panel[type="arrow"][animate][animate="open"] {
animation: zen-jello-animation 0.2s ease-in-out;
}
@keyframes zen-jello-animation {
0% {
transform: scale3d(0.9, 0.9, 0.9);
}
50% {
transform: scale3d(1.01, 1.01, 1.01);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}