mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 15:18:32 -06:00
17 lines
173 B
CSS
17 lines
173 B
CSS
|
|
.show-modal {
|
|
animation: enter 250ms;
|
|
display: block;
|
|
opacity: 1;
|
|
}
|
|
|
|
@keyframes enter {
|
|
from {
|
|
display: block;
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|