summaryrefslogtreecommitdiff
path: root/examples/framework-multiple/src/styles/global.css
blob: 5997a5afd98a1f1d739971064d3a612a7131d2a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
html,
body {
  font-family: system-ui;
  margin: 0;
}

body {
  padding: 2rem;
}

.counter {
  display: grid;
  font-size: 2em;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2em;
  place-items: center;
}

.counter-message {
  text-align: center;
}