scratch-paint/src/containers/paper-canvas.css
2017-09-22 12:12:07 -04:00

10 lines
306 B
CSS

.paper-canvas {
width: 500px;
height: 400px;
margin: auto;
position: relative;
background-color: #fff;
/* Turn off anti-aliasing for the drawing canvas. Each time it's updated it switches
back and forth from aliased to unaliased and that looks bad */
image-rendering: pixelated;
}