Skip to content

Commit

Permalink
#1: fix spacing function and fix broken header on Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
robinpoort committed Jul 4, 2017
1 parent 6875649 commit 4d7f790
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
8 changes: 4 additions & 4 deletions docs/_scss/_shame.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ header {
width: 220%;
height: 220%;
background: linear-gradient(248deg, $color1, $color2, $color3);
transform: translate(0, 0) rotate(0deg);
transform: translate(0, 0);
animation: headerAnimate 20s ease infinite;
}

Expand All @@ -45,13 +45,13 @@ header {

@keyframes headerAnimate {
0% {
transform: translate(0, 0) rotate(0deg);
transform: translate(0, 0);
}
50% {
transform: translate(-50%, -50%) rotate(3deg);
transform: translate(-50%, 0);
}
100% {
transform: translate(0, 0) rotate(0deg);
transform: translate(0, 0);
}
}

Expand Down
Loading

0 comments on commit 4d7f790

Please sign in to comment.