From a1e1e0bc0efc17364a0b4f06b52570625fd22df0 Mon Sep 17 00:00:00 2001 From: TimKapitza Date: Fri, 29 Sep 2023 09:17:12 +0200 Subject: [PATCH] configured tailwind --- src/app.css | 3 +++ src/routes/+layout.svelte | 5 +++++ tailwind.config.js | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 src/app.css create mode 100644 src/routes/+layout.svelte diff --git a/src/app.css b/src/app.css new file mode 100644 index 0000000..bd6213e --- /dev/null +++ b/src/app.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; \ No newline at end of file diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte new file mode 100644 index 0000000..5c8044c --- /dev/null +++ b/src/routes/+layout.svelte @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index c189a4a..13207cc 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,6 +1,6 @@ /** @type {import('tailwindcss').Config} */ export default { - content: [], + content: ['./src/**/*.{html,js,svelte,ts}'], theme: { extend: {}, },