17 lines
361 B
JavaScript
17 lines
361 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
boxShadow: {
|
|
highlight: 'inset 0 0 0 1px rgba(255, 255, 255, 0.1)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|