From 06206977f45bd2a1a48eb1db84c0138c43a944d9 Mon Sep 17 00:00:00 2001 From: Felix Schlegel Date: Sun, 8 Dec 2024 13:53:24 +0100 Subject: [PATCH] chore: fix svelte check warning for tailwind css code If there's no language specified for the style tag, the compiler thinks it's vanilla css and will output a warning. When adding `lang="postcss"` the compiler knows that we use tailwind directives and won't output that warning. --- src/lib/components/composites/user-avatar/UserAvatar.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/composites/user-avatar/UserAvatar.svelte b/src/lib/components/composites/user-avatar/UserAvatar.svelte index 3c29db5f..9d82f36e 100644 --- a/src/lib/components/composites/user-avatar/UserAvatar.svelte +++ b/src/lib/components/composites/user-avatar/UserAvatar.svelte @@ -59,7 +59,7 @@ Usage: {/if} -