diff --git a/site/src/components/StatsView.svelte b/site/src/components/StatsView.svelte
index e51f6ad..6874fcc 100644
--- a/site/src/components/StatsView.svelte
+++ b/site/src/components/StatsView.svelte
@@ -264,7 +264,7 @@
{#if loading}
-
+
{:else}
@@ -296,7 +296,7 @@
-
+
{#each DOW as d, i}
{i % 2 === 1 ? d : ''}
@@ -318,11 +318,14 @@
{#each week as date}
onCellEnter(date, e)}
on:mouseleave={onCellLeave}
on:click={e => onCellClick(date, e)}
+ on:keydown={e => e.key === 'Enter' && onCellClick(date, e)}
>
{/each}
@@ -335,7 +338,7 @@
Less
{#each legendSwatches as c}
-
+
{/each}
More (percentile ยท max {Math.round(maxDailyKm)} km)
@@ -343,7 +346,7 @@
{#each sportsInData as sp}
-
+
{sportIcon(sp)}
{/each}
@@ -362,6 +365,7 @@
{#if tooltipDate && tooltipActivities.length > 0}