Skip to content

Commit

Permalink
Change size of board
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-drozd-it committed Jul 12, 2024
1 parent bbda378 commit 4c47354
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/drawing/DrawingBoard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ const DrawingBoard: React.FC = () => {
const paletteColorMenuType = 'Row'; // Row, Menu, Menu2
const [ paletteColor, setPaletteColor ] = useState<string>('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';
Expand Down

0 comments on commit 4c47354

Please sign in to comment.