mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-01 08:57:27 -08:00
8 lines
126 B
SCSS
8 lines
126 B
SCSS
|
// Center-align a block level element
|
||
|
|
||
|
@mixin center-block() {
|
||
|
display: block;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|