blob: e06fb5e276e471ac4bd574068254808089695afd [file] [log] [blame]
// Center-align a block level element
@mixin center-block() {
display: block;
margin-left: auto;
margin-right: auto;
}