13 lines
140 B
SCSS
13 lines
140 B
SCSS
.grid-center {
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.margin-center {
|
|
margin-inline: auto;
|
|
}
|