mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 21:47:59 +01:00
7 lines
120 B
Text
Vendored
7 lines
120 B
Text
Vendored
// Center-align a block level element
|
|
|
|
.center-block() {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|