mirror of
https://gitlab.com/niansa/discord_llama.git
synced 2025-03-06 20:48:25 +01:00
7 lines
120 B
Text
7 lines
120 B
Text
// Center-align a block level element
|
|
|
|
.center-block() {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|