Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

Commit

Permalink
add multiple browswer support to linear gradient
Browse files Browse the repository at this point in the history
  • Loading branch information
MelizzaP committed Jul 11, 2016
1 parent 8b53e22 commit 9c7d393
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -11,11 +11,14 @@
position: relative;
&:after {
background: linear-gradient(to right, rgba(255, 255, 255, 0), $bg-color 50%);
background: -webkit-gradient(to right, rgba(255, 255, 255, 0), $bg-color 50%);
background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0), $bg-color 50%);
background: -webkit-linear-gradient(to right, rgba(255, 255, 255, 0), $bg-color 50%);
content: '';
height: $lineHeight;
position: absolute;
bottom: 0;
right: 0;
width: 30%;
}
}
}

0 comments on commit 9c7d393

Please sign in to comment.