Added pop-in animation for windows
This commit is contained in:
parent
527bbbe53d
commit
371c1a8300
1 changed files with 10 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue