react-code-dataset / Dsa-Tracker /tailwind.config.js
Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
307 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
fontFamily: {
'nunito': ['nunito', 'sans-serif'],
'MyFont': ['"My Font"', 'serif'] // Ensure fonts with spaces have " " surrounding it.
},
extend: {},
},
plugins: [],
}