summaryrefslogtreecommitdiff
path: root/examples/framework-solid/src/components/Counter.css
blob: cffdbda7b65ed1a3051dd837999e13be3d6884b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
.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;
}