Skip to content

Commit

Permalink
Changed keyframe animations to use percentages so it works on varying…
Browse files Browse the repository at this point in the history
… screen sizes
  • Loading branch information
pkallas committed Nov 22, 2017
1 parent 78cbc30 commit a6ce325
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,21 @@

@keyframes slideupbar {
0% {bottom: 0px;}
100% {bottom: 650px;}
100% {bottom: 80%;}
}

@keyframes slideupform {
0% {bottom: -50px;}
100% {bottom: 580px;}
100% {bottom: 70%;}
}

@keyframes slidedownbar {
0% {bottom: 650px;}
0% {bottom: 80%;}
100% {bottom: 0px;}
}

@keyframes slidedownform {
0% {bottom: 580px;}
0% {bottom: 70%;}
100% {bottom: -50px;}
}

Expand Down

0 comments on commit a6ce325

Please sign in to comment.