astro/examples/framework-solid/src/components/Counter.css

12 lines
180 B
CSS
Raw Normal View History

.counter {
2021-12-22 21:11:05 +00:00
display: grid;
font-size: 2em;
grid-template-columns: repeat(3, minmax(0, 1fr));
margin-top: 3em;
place-items: center;
}
.counter-message {
2021-12-22 21:11:05 +00:00
text-align: center;
}