diff --git a/src/routes/(app)/chapters/[chapterId]/puzzle/[puzzleId]/+page.svelte b/src/routes/(app)/chapters/[chapterId]/puzzle/[puzzleId]/+page.svelte index 3f42c52..31a24b2 100644 --- a/src/routes/(app)/chapters/[chapterId]/puzzle/[puzzleId]/+page.svelte +++ b/src/routes/(app)/chapters/[chapterId]/puzzle/[puzzleId]/+page.svelte @@ -22,12 +22,12 @@
-

+

{puzzle.name} ({puzzle.scoreMax} points) -

+
{@html puzzle.content} diff --git a/tailwind.config.js b/tailwind.config.js index 9bb9b1e..0f14be3 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -4,7 +4,7 @@ import { fontFamily } from "tailwindcss/defaultTheme"; const config = { darkMode: ["class"], content: ["./src/**/*.{html,js,svelte,ts}"], - safelist: ["dark"], + safelist: ["dark"], theme: { container: { center: true, @@ -67,6 +67,10 @@ const config = { hoverOnlyWhenSupported: true } }, + plugins: [ + require('@tailwindcss/typography'), + require('@tailwindcss/forms'), + ], }; export default config;