11 lines
202 B
CSS
11 lines
202 B
CSS
|
|
html, body {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
canvas {
|
||
|
|
image-rendering: -moz-crisp-edges;
|
||
|
|
image-rendering: -webkit-crisp-edges;
|
||
|
|
image-rendering: pixelated;
|
||
|
|
image-rendering: crisp-edges;
|
||
|
|
}
|