Created
March 28, 2019 22:25
-
-
Save smithki/92c09d728eab8ac0ed553f9894fb47eb 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
$margin-right-adjectives: ( | |
"small": 1rem, | |
"medium": 1.5rem, | |
"large": 2rem, | |
); | |
// A(define, ...) is a mixin provided by Anthology | |
@include A(define, | |
"marginRight", // The namespace of our rule | |
margin-right, // The CSS property we are targeting | |
$margin-right-adjectives // The "adjectives" for this rule | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment