Skip to content

Instantly share code, notes, and snippets.

@theuves
Last active February 11, 2018 20:14
Show Gist options
  • Save theuves/505d8d7643dddb45e71c2f7394011bd2 to your computer and use it in GitHub Desktop.
Save theuves/505d8d7643dddb45e71c2f7394011bd2 to your computer and use it in GitHub Desktop.
@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