Last active
September 25, 2020 15:52
-
-
Save chadspencer/4be77c13ee2fd4ba66e6e970ca8f4277 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
.button { | |
background: black; | |
color: white; | |
&.primary { | |
background: red; | |
} | |
&.secondary { | |
background: green; | |
} | |
} | |
.button + .button { | |
margin-left: 8px; | |
} | |
.button + .button-group, | |
.button-group + .button { | |
margin-left: 8px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment