summaryrefslogtreecommitdiff
path: root/examples/framework-preact/src/components/Counter.css
blob: 656b19d42ba1b8072e9290c92a1bed6c7621e700 (plain) (blame)
1
2
3
4
5
6
7
.counter {
	display: grid;
	font-size: 2em;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 2em;
	place-items: center;
}