Created
November 11, 2014 13:46
-
-
Save brunogarcia/667c5ca6a55dc5256bd8 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.7) | |
// Compass (v1.0.1) | |
// ---- | |
$align-types: ("left", "right", "center", "justify"); | |
@for $i from 1 through length($align-types) { | |
$type: nth($align-types, $i); | |
.align-#{$type}{text-align: #{$type} !important;} | |
} |
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
.align-left { | |
text-align: left !important; | |
} | |
.align-right { | |
text-align: right !important; | |
} | |
.align-center { | |
text-align: center !important; | |
} | |
.align-justify { | |
text-align: justify !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment