From 02c38a0d3b1e71d2cb708c5ef2d2c472ca977e5a Mon Sep 17 00:00:00 2001 From: kreako <65113001+kreako@users.noreply.github.com> Date: Sun, 5 Sep 2021 02:09:39 +0200 Subject: [PATCH] examples: Fix with-tailwindcss example #1256 (#1312) --- examples/with-tailwindcss/src/pages/index.astro | 2 +- examples/with-tailwindcss/{public => src/styles}/global.css | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename examples/with-tailwindcss/{public => src/styles}/global.css (100%) diff --git a/examples/with-tailwindcss/src/pages/index.astro b/examples/with-tailwindcss/src/pages/index.astro index 6c0408c8d..10f370ba3 100644 --- a/examples/with-tailwindcss/src/pages/index.astro +++ b/examples/with-tailwindcss/src/pages/index.astro @@ -12,7 +12,7 @@ import Button from '../components/Button.astro'; Astro + TailwindCSS - + diff --git a/examples/with-tailwindcss/public/global.css b/examples/with-tailwindcss/src/styles/global.css similarity index 100% rename from examples/with-tailwindcss/public/global.css rename to examples/with-tailwindcss/src/styles/global.css