semantic-image-search.img / tailwind.config.js
ehristoforu's picture
Duplicate from Xenova/semantic-image-search
c9ec057
raw
history blame contribute delete
361 Bytes
/** @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: [],
}