mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-23 14:02:50 -05:00
10 lines
306 B
CSS
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;
|
|
}
|