sharepulse/frontend/tailwind.config.js
Max 704969d041 Added sample UI design
- Added credits component
- Added simple icons
- Made navbar responsive for mobile
- Added credits/upload/download/home/navbar components
- Created simple design for home component
- Added tailwindcss and daisyUI and TailwindCSS
2024-01-28 13:55:39 +01:00

14 lines
236 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["light", "dark", "cupcake"],
},
}