react-code-dataset / tsdx /website /tailwind.config.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
module.exports = {
purge: [
'./components/**/*.js',
'./pages/**/*.md',
'./pages/**/*.mdx',
'./.nextra/**/*.js',
'./nextra.config.js',
],
theme: {
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
},
fontFamily: {
display: ['inter', 'sans-serif'],
},
letterSpacing: {
tight: '-0.015em',
},
},
};