scratch-paint/src/containers/paper-canvas.css

11 lines
306 B
CSS
Raw Normal View History

2017-09-06 18:01:49 -04:00
.paper-canvas {
width: 500px;
height: 400px;
margin: auto;
position: relative;
background-color: #fff;
2017-09-22 12:12:07 -04:00
/* 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 */
2017-09-13 15:17:59 -04:00
image-rendering: pixelated;
2017-09-06 18:10:19 -04:00
}