forked from Ponysearch/Ponysearch
16 lines
232 B
Text
16 lines
232 B
Text
|
.dialog-modal {
|
||
|
animation-name: dialogmodal;
|
||
|
animation-duration: 0.13s;
|
||
|
|
||
|
@keyframes dialogmodal {
|
||
|
0% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
50% {
|
||
|
opacity: 0.5;
|
||
|
transform: translate(-50%, -50%) scale(1.05);
|
||
|
}
|
||
|
}
|
||
|
}
|