diff --git a/package.json b/package.json index f5c5716..8c59b2a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,10 @@ { "author": "Scott Bedard", + "contributors": [ + "Eric Weidow (https://github.com/studsministern)" + ], "bugs": { - "url": "https://github.com/scottbedard/svelte-heatmap/issues" + "url": "https://github.com/studsministern/svelte-heatmap/issues" }, "description": "A light weight and customizable version of GitHub's contribution graph", "devDependencies": { @@ -22,7 +25,7 @@ "src", "dist" ], - "homepage": "https://github.com/scottbedard/svelte-heatmap", + "homepage": "https://github.com/studsministern/svelte-heatmap", "keywords": [ "svelte" ], @@ -32,7 +35,7 @@ "name": "svelte-heatmap", "repository": { "type": "git", - "url": "git+https://github.com/scottbedard/svelte-heatmap.git" + "url": "git+https://github.com/studsministern/svelte-heatmap.git" }, "svelte": "src/index.js", "scripts": { @@ -42,5 +45,5 @@ "watch": "rollup -c -w" }, "unpkg": "dist/index.umd.min.js", - "version": "1.0.2" + "version": "1.0.3" } diff --git a/src/SvelteHeatmap.svelte b/src/SvelteHeatmap.svelte index 23d19d8..a6224ca 100644 --- a/src/SvelteHeatmap.svelte +++ b/src/SvelteHeatmap.svelte @@ -30,7 +30,7 @@ {/each} {/if} - + {#each chunks as chunk, index} { - return (cellRect * index) + (cellRect / 2) + monthLabelHeight; + return (cellRect * index) + (cellRect / 2) + monthLabelHeight + fontSize; } \ No newline at end of file diff --git a/src/views/Month.svelte b/src/views/Month.svelte index 9a45594..01cc857 100644 --- a/src/views/Month.svelte +++ b/src/views/Month.svelte @@ -1,4 +1,4 @@ - + {#each days as day}