10 lines
136 B
CSS
10 lines
136 B
CSS
.container {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, auto);
|
|
align-items: center;
|
|
}
|
|
|
|
.textCenter {
|
|
text-align: center;
|
|
}
|