Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Created October 29, 2018 12:30
Show Gist options
  • Save mrzarkovic/56c154a54b6d04eeabf8150607b63b9c to your computer and use it in GitHub Desktop.
Save mrzarkovic/56c154a54b6d04eeabf8150607b63b9c to your computer and use it in GitHub Desktop.
SASS variables
$primary-color: red;
$secondary-color: blue;
.link {
color: $primary-color;
&:hover {
color: $secondary-color;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment