mirror of
https://github.com/ryuslash/mode-icons.git
synced 2024-11-23 18:10:29 +01: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;
|
||
|
}
|