Assignment-6/tailwind.config.js

15 lines
245 B
JavaScript
Raw Normal View History

2025-01-10 13:04:24 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
poppins: "Poppins",
},
},
},
plugins: [],
}