website-2/tailwind.config.js
Nick Bland d0afdc696e
Improve Responsiveness
- Remove old SVG and use a proper library for iconography
~ Adjust formatting for various objects, including the footer, and countdown
+ Add in a barebones home page
2024-04-20 15:48:54 +10:00

13 lines
269 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["night", "winter"],
},
darkMode: "selector",
};