Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created March 25, 2020 23:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BetterProgramming/e9600f7ecb7d0c68a61374a8f7e149ca to your computer and use it in GitHub Desktop.
Save BetterProgramming/e9600f7ecb7d0c68a61374a8f7e149ca to your computer and use it in GitHub Desktop.
@mixin menu-button {
padding: 10px;
border: 1px solid #ccc;
background: #777;
color: #fff;
letter-spacing: 1px;
cursor: pointer;
}
.home {
@include menu-button;
font-weight: bold;
}
.about {
@include menu-button;
}
.help {
@include menu-button;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment