31 lines
737 B
TypeScript
31 lines
737 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
backgroundImage: {
|
|
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
|
|
'gradient-conic':
|
|
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
|
|
},
|
|
},
|
|
screens: {
|
|
'tablet': '640px',
|
|
// => @media (min-width: 640px) { ... }
|
|
|
|
'laptop': '1024px',
|
|
// => @media (min-width: 1024px) { ... }
|
|
|
|
'desktop': '1280px',
|
|
// => @media (min-width: 1280px) { ... }
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
export default config
|