diff --git a/src/lib/components/GuessesTable.svelte b/src/lib/components/GuessesTable.svelte index 8bbb841..38e5e9e 100644 --- a/src/lib/components/GuessesTable.svelte +++ b/src/lib/components/GuessesTable.svelte @@ -1,91 +1,99 @@ -
| Book | -Testament | -Section | -
|---|---|---|
| - {guess.book.id === correctBookId ? "✅" : "❌"} - {guess.book.name} - | -- {guess.testamentMatch ? "✅" : "❌"} - {guess.book.testament.charAt(0).toUpperCase() + - guess.book.testament.slice(1).toLowerCase()} - | -- {guess.sectionMatch ? "✅" : "❌"} - {guess.adjacent ? "‼️ " : ""}{guess.book.section} - | -
| Book | +Testament | +Section | +
|---|---|---|
| + {guess.book.id === correctBookId ? "✅" : "❌"} + {guess.book.name} + | ++ {guess.testamentMatch ? "✅" : "❌"} + {guess.book.testament.charAt(0).toUpperCase() + + guess.book.testament.slice(1).toLowerCase()} + | ++ {guess.sectionMatch ? "✅" : "❌"} + {guess.adjacent ? "‼️ " : ""}{guess.book.section} + | +