26 أسطر
412 B
JavaScript
26 أسطر
412 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
container: {
|
|
center: true,
|
|
padding: '1rem',
|
|
screens: {
|
|
sm: '100%',
|
|
md: '768px',
|
|
lg: '1024px',
|
|
xl: '1400px',
|
|
'2xl': '1800px',
|
|
'3xl': '2000px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|