Added pop-in animation for windows

This commit is contained in:
Prozilla 2023-07-22 20:12:18 +02:00
parent 527bbbe53d
commit 371c1a8300
No known key found for this signature in database
GPG key ID: 5858DFE71CAF31EE

View file

@ -8,6 +8,16 @@
display: flex;
flex-direction: column;
background-color: var(--background-color-c);
animation: pop-in 200ms ease-in-out;
}
@keyframes pop-in {
0% {
scale: 0;
}
100% {
scale: 100%;
}
}
.Window-container.Maximized {