Created
August 24, 2016 18:35
-
-
Save che-wf/dba0e015cadfcec81bb74a104a3619fe to your computer and use it in GitHub Desktop.
For those who come from a designer background, these basic mixins will provide you with the various types of justification that you're used to.
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
| @mixin center-justified { | |
| text-align-last: center; | |
| text-align: justify; | |
| } | |
| @mixin left-justified { | |
| text-align-last: left; | |
| text-align: justify; | |
| } | |
| @mixin right-justified { | |
| text-align-last: right; | |
| text-align: justify; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment