1
0
mirror of https://github.com/flarum/core.git synced 2025-06-10 00:25:07 +02:00
php-flarum/less/lib/bootstrap/mixins/center-block.less
2015-04-25 22:31:30 +09:30

8 lines
120 B
Plaintext
Executable File

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