Skip to content

Commit e0f84ab

Browse files
committed
fix: corrected graph data + left-aligned all text
1 parent 39c3bf5 commit e0f84ab

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/web/src/lib/Graph.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import { sineInOut } from 'svelte/easing';
44
let data = new Map<string, number>();
55
data.set('Harper', 10);
6-
data.set('Grammarly', 200);
7-
data.set('LanguageTool', 1000);
6+
data.set('LanguageTool', 650);
7+
data.set('Grammarly', 4000);
88
99
let maxW = 0;
1010

packages/web/src/lib/Section.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</div>
1313
{/if}
1414

15-
<div class={`justify-center space-y-2 ${swapped ? 'text-right' : ''}`}>
15+
<div class={`justify-center space-y-2`}>
1616
<h2 class="text-2xl font-bold sm:text-3xl lg:text-4xl">
1717
<slot name="title" />
1818
</h2>

0 commit comments

Comments
 (0)