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
Raw Normal View History

2014-12-10 11:36:38 +00:00
// Center-align a block level element
@mixin center-block() {
display: block;
margin-left: auto;
margin-right: auto;
}