Skip to content

Commit f5c2e62

Browse files
committed
buildPack:deploy+stroke000
1 parent 73de97e commit f5c2e62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/PaintBoard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ class PaintBoard extends Component {
6868
redraw = () => {
6969
const context = document.getElementById('canvas').getContext('2d');
7070
context.clearRect(0, 0, context.canvas.width, context.canvas.height);
71-
context.strokeStyle = '#02b3e4';
71+
context.strokeStyle = '#000';
7272
context.lineJoin = 'round';
73-
context.lineWidth = 5;
73+
context.lineWidth = 2;
7474

7575
for (let i = 0; i < this.state.clickX.length; i++) {
7676
context.beginPath();

0 commit comments

Comments
 (0)