This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/js/bootstrap/mixins/_center-block.scss

8 lines
126 B
SCSS

// Center-align a block level element
@mixin center-block() {
display: block;
margin-left: auto;
margin-right: auto;
}