Fix color swatch paint area

Still hate the code, but at least it's sized correctly now
This commit is contained in:
2024-12-04 22:45:48 -05:00
parent 30e1619175
commit 137dcc675d
3 changed files with 5 additions and 7 deletions

View File

@ -53,10 +53,7 @@ export const InvertibleCanvas: React.FC<InvertibleCanvasProps> = ({width, height
ref={canvasRef}
width={width}
height={height}
style={{
aspectRatio: width / height,
width: '75%'
}}
style={{aspectRatio: width / height}}
/>
)
}