Created
December 4, 2015 17:34
-
-
Save kpennell/c0d61a1b2dafc2549010 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@mixin center() { | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
.container { | |
@include center(); | |
} | |
.image-container { | |
@include center; | |
} |
This file contains 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
.container { | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
.image-container { | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment