Skip to content

Instantly share code, notes, and snippets.

@b-tekinli
Created April 29, 2024 19:54
Show Gist options
  • Save b-tekinli/021166d8f777d1603cb09099a37e198d to your computer and use it in GitHub Desktop.
Save b-tekinli/021166d8f777d1603cb09099a37e198d to your computer and use it in GitHub Desktop.
SCSS (SASS)
$primary-color: blue;
.button {
background-color: $primary-color;
&:hover {
background-color: darken($primary-color, 10%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment