mirror of
https://git.anonymousland.org/anonymousland/anonymousland.git
synced 2025-01-10 10:29:25 -05: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;
|
||
|
}
|