diff --git a/src/lib/components/GuessesTable.svelte b/src/lib/components/GuessesTable.svelte index c8a29b9..0f2974f 100644 --- a/src/lib/components/GuessesTable.svelte +++ b/src/lib/components/GuessesTable.svelte @@ -99,47 +99,35 @@ class="flex gap-2 justify-center mb-4 pb-2 border-b border-gray-400" >
- Book -
-
Testament
Section
First Letter
+
+ Book +
{#each guesses as guess, rowIndex (guess.book.id)}
- -
- {getBoxContent(guess, "book")} -
-
{getBoxContent(guess, "testament")} {getBoxContent(guess, "section")} @@ -167,12 +155,24 @@ class="w-1/4 shrink-0 h-16 sm:h-20 md:h-24 border-2 border-opacity-80 rounded-lg flex items-center justify-center text-white font-bold text-base sm:text-lg md:text-xl shadow-md animate-flip-in {getBoxColor( guess.firstLetterMatch, )}" - style="animation-delay: {rowIndex * 1000 + 3 * 500}ms" + style="animation-delay: {rowIndex * 1000 + 2 * 500}ms" > {getBoxContent(guess, "firstLetter")}
+ + +
+ {getBoxContent(guess, "book")} +
{/each}