/** * align * * - text * - floating for elements * - centering with margin * * @author Björn Hase * */ @mixin crispy-boilerplate-align() { .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .float-left { float: left; } .float-right { float: right; } .float-none { float: none; } .centered { margin-left: auto; margin-right: auto; } }