react-code-dataset / Youtube-Clone /tailwind.config.js
Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
709 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
fontFamily: {
roboto: ["Roboto", "sans-serif"],
},
screens: {
"2xl": { max: "1535px" },
// => @media (max-width: 1535px) { ... }
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1023px" },
// => @media (max-width: 1023px) { ... }
md: { max: "767px" },
// => @media (max-width: 767px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
},
},
content: ["./src/**/*.{html,js,jsx}", "./public/*"],
theme: {
extend: {
colors: {
dark: "#131417",
},
},
},
plugins: [],
};