diff --git a/src/components/drawing/DrawingBoard.tsx b/src/components/drawing/DrawingBoard.tsx index 62d09a08..acfcfe29 100644 --- a/src/components/drawing/DrawingBoard.tsx +++ b/src/components/drawing/DrawingBoard.tsx @@ -23,12 +23,12 @@ const DrawingBoard: React.FC = () => { const paletteColorMenuType = 'Row'; // Row, Menu, Menu2 const [ paletteColor, setPaletteColor ] = useState('black'); - const boardWidth = 800; - const boardHeight = 500; - const canvasWidth = 800; - const canvasHeight = 440; + const boardWidth = 1200; + const boardHeight = 800; + const canvasWidth = 1200; + const canvasHeight = 740; const toolbarHeight = 60; - const toolbarWidth = 750; + const toolbarWidth = 740; const cursorSize = 5; const backgroundColor = 'lightgray';