We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 773d914 commit 6999c65Copy full SHA for 6999c65
scripts/components/Commit.js
@@ -32,14 +32,14 @@ const Commit =
32
return (
33
<path
34
key={p.index} fill="none" strokeWidth="2" stroke={pallet[p.lane % pallet.length]}
35
- d={`M${lane * 15 + 10},15 l5,5 h${(p.lane - lane) * 15 - 5} v${h - 5}`}
+ d={`M${lane * 15 + 10},15 l5,5 h${(p.lane - lane) * 15 - 10} v${h - 10} l5,5`}
36
/>
37
);
38
}
39
40
41
42
- d={`M${lane * 15 + 10},15 l-5,5 h${(p.lane - lane) * 15 + 5} v${h - 5}`}
+ d={`M${lane * 15 + 10},15 l-5,5 h${(p.lane - lane) * 15 + 10} v${h - 10} l-5,5`}
43
44
45
0 commit comments