10 lines
140 B
CSS
10 lines
140 B
CSS
.container {
|
|
display: grid;
|
|
grid-template-columns: auto auto auto auto;
|
|
align-items: center;
|
|
}
|
|
|
|
.textCenter {
|
|
text-align: center;
|
|
}
|