12 lines
180 B
CSS
12 lines
180 B
CSS
|
.counter {
|
||
|
display: grid;
|
||
|
font-size: 2em;
|
||
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||
|
margin-top: 3em;
|
||
|
place-items: center;
|
||
|
}
|
||
|
|
||
|
.counter-message {
|
||
|
text-align: center;
|
||
|
}
|