Last active
February 11, 2018 20:14
-
-
Save theuves/505d8d7643dddb45e71c2f7394011bd2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin gradiente($direcao, $cor, $escuridao) { | |
$cor-escura: darken($cor, $escuridao); | |
background-image: linear-gradient( | |
to $direcao, | |
$cor, | |
$cor-escura | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment