Created
August 17, 2015 16:43
-
-
Save jonsuh/9305971acdfa2ef89a45 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$social: ( | |
facebook: #3b5998, | |
twitter: #55acee, | |
); | |
@mixin social-button-variant($brand) { | |
background-color: map-get($social, $brand); | |
} | |
@each $social-brand, $social-color in $social { | |
.button-social-#{$social-brand} { | |
@include social-button-variant($social-brand); | |
} | |
} |
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-social-facebook { | |
background-color: #3b5998; | |
} | |
.button-social-twitter { | |
background-color: #55acee; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment