Skip to content

Commit

Permalink
Merge pull request #25 from lambdacasserole/bugfix-linear-gradient
Browse files Browse the repository at this point in the history
Fix calls to linear-gradient
  • Loading branch information
benbalter committed May 17, 2018
2 parents 2a0ef56 + 2a52e13 commit 9847c54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _sass/jekyll-theme-leap-day.scss
Expand Up @@ -198,7 +198,7 @@ header {

.button {
border: 1px solid #dba500;
background: linear_gradient(rgb(255, 231, 136), rgb(255, 206, 56));
background: linear-gradient(rgb(255, 231, 136), rgb(255, 206, 56));
border-radius: 2px;
box-shadow: inset 0px 1px 0px rgba(255,255,255,.4), 0px 1px 1px rgba(0,0,0,.1);
background-color: #FFE788;
Expand All @@ -213,7 +213,7 @@ header {
text-align:center;

&:hover {
background: linear_gradient(rgb(255, 231, 136), rgb(255, 231, 136));
background: linear-gradient(rgb(255, 231, 136), rgb(255, 231, 136));
background-color: #ffeca0;
}
}
Expand Down

0 comments on commit 9847c54

Please sign in to comment.