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"] + } }