Skip to content

Commit

Permalink
Change modal animation to fade in only.
Browse files Browse the repository at this point in the history
  • Loading branch information
joedolson committed Oct 27, 2023
1 parent d5c31e1 commit d17616c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/css/reset.css
Original file line number Diff line number Diff line change
Expand Up @@ -705,24 +705,22 @@ body.mc-no-scroll {
background: #fff;
}


.my-calendar-modal {
animation: apparition ease .5s 1 normal ;
animation: apparition ease .3s 1 normal ;
}

@keyframes apparition {
0% {
opacity: 0;
max-height: 0;
width: 0;
left: 50%;
left: calc( ( 100% - 55.625em ) / 2 );
}
100% {
opacity: 1;
max-height: 100%;
width: 100%;
max-width: 55.625em;
left: calc( ( 100% - 55.625em ) / 2 );
}
}

Expand Down

0 comments on commit d17616c

Please sign in to comment.