Skip to content

Commit

Permalink
syntax error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtmiller committed Aug 19, 2016
1 parent 121aff5 commit 05863d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions css/grayscale.css
Expand Up @@ -190,7 +190,7 @@ a:focus {
-moz-animation-timing-function: linear;
}
@-webkit-keyframes pulse {
0 {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
Expand All @@ -204,7 +204,7 @@ a:focus {
}
}
@-moz-keyframes pulse {
0 {
0% {
-moz-transform: scale(1);
transform: scale(1);
}
Expand Down
2 changes: 1 addition & 1 deletion css/grayscale.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions less/grayscale.less
Expand Up @@ -199,7 +199,7 @@ a {
}

@-webkit-keyframes pulse {
0 {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
Expand All @@ -216,7 +216,7 @@ a {
}

@-moz-keyframes pulse {
0 {
0% {
-moz-transform: scale(1);
transform: scale(1);
}
Expand Down

0 comments on commit 05863d4

Please sign in to comment.