aboutsummaryrefslogtreecommitdiffstats
path: root/src/style.css
blob: 026f6a13eeec1702da2616caef2d6f241c155e63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
body {
  display: grid; 
  height: 100vh;
}
canvas {
  --scale: 3;
  width: calc(320px * var(--scale));
  height: calc(200px * var(--scale));
  place-self: center;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border: 1px solid black;
}