aboutsummaryrefslogtreecommitdiffstats
path: root/web/tailwind.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'web/tailwind.config.ts')
-rw-r--r--web/tailwind.config.ts16
1 files changed, 8 insertions, 8 deletions
diff --git a/web/tailwind.config.ts b/web/tailwind.config.ts
index 84287e82..41668a3b 100644
--- a/web/tailwind.config.ts
+++ b/web/tailwind.config.ts
@@ -1,13 +1,13 @@
-import type { Config } from "tailwindcss"
+import type { Config } from "tailwindcss";
const config = {
darkMode: ["class"],
content: [
- './pages/**/*.{ts,tsx}',
- './components/**/*.{ts,tsx}',
- './app/**/*.{ts,tsx}',
- './src/**/*.{ts,tsx}',
- ],
+ "./pages/**/*.{ts,tsx}",
+ "./components/**/*.{ts,tsx}",
+ "./app/**/*.{ts,tsx}",
+ "./src/**/*.{ts,tsx}",
+ ],
prefix: "",
theme: {
container: {
@@ -75,6 +75,6 @@ const config = {
},
},
plugins: [require("tailwindcss-animate")],
-} satisfies Config
+} satisfies Config;
-export default config \ No newline at end of file
+export default config;