diff --git a/src/lib/components/GuessesTable.svelte b/src/lib/components/GuessesTable.svelte index a2bac3a..e64446c 100644 --- a/src/lib/components/GuessesTable.svelte +++ b/src/lib/components/GuessesTable.svelte @@ -1,191 +1,201 @@ -{#if hasGuesses} -
- -
-
- Book -
-
- Testament -
-
- Section -
-
- First Letter -
-
+{#if !hasGuesses} + +

+ Instructions +

+

+ Guess what book of the bible you think the verse is from. You will + get clues to tell you if your guess is close or not. Green means the + category is correct; red means wrong. +

+
+{:else} +
+ +
+
+ Book +
+
+ Testament +
+
+ Section +
+
+ First Letter +
+
- {#each guesses as guess, rowIndex (guess.book.id)} -
- -
- {getBoxContent(guess, "book")} -
+ {#each guesses as guess, rowIndex (guess.book.id)} +
+ +
+ {getBoxContent(guess, "book")} +
- -
- {getBoxContent(guess, "testament")} -
+ +
+ {getBoxContent(guess, "testament")} +
- -
- {getBoxContent(guess, "section")} - {#if guess.adjacent} - ‼️ - {/if} - -
+ +
+ {getBoxContent(guess, "section")} + {#if guess.adjacent} + ‼️ + {/if} + +
- -
- {getBoxContent(guess, "firstLetter")} -
-
- {/each} -
- + +
+ {getBoxContent(guess, "firstLetter")} +
+
+ {/each} +
+ {/if}