From 6c1a3436a57a058ab6a6fc52d9cd4d579273178e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joe=20Ku=CC=88ng?= Date: Mon, 30 Jan 2023 16:00:07 +0100 Subject: [PATCH] changes --- src/app/app.component.html | 1 + src/styles.css | 3 +++ tailwind.config.js | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/src/app/app.component.html b/src/app/app.component.html index e69de29..2934ad1 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -0,0 +1 @@ + diff --git a/src/styles.css b/src/styles.css index 90d4ee0..d3a1a9a 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1 +1,4 @@ /* You can add global styles to this file, and also import other style files */ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/tailwind.config.js b/tailwind.config.js index 3e5080d..b9f233f 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,3 +1,7 @@ module.exports = { + content: ['./src/**/*.{html,js,ts}'], plugins: [require("daisyui")], + daisyui: { + themes: ["lemonade"] + } }