rsnext/examples/with-cloudinary/tailwind.config.js
Hassan El Mghari 57dc7207e6
Add with-cloudinary example (#43250)
Added an image gallery example using Next.js and Cloudinary.

Edit: This is now ready to ship!

Co-authored-by: Balázs Orbán <18369201+balazsorban44@users.noreply.github.com>
Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com>
2022-12-02 04:05:34 +00:00

24 lines
580 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
future: {
hoverOnlyWhenSupported: true,
},
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
boxShadow: {
highlight: 'inset 0 0 0 1px rgba(255, 255, 255, 0.05)',
},
screens: {
narrow: { raw: '(max-aspect-ratio: 3 / 2)' },
wide: { raw: '(min-aspect-ratio: 3 / 2)' },
'taller-than-854': { raw: '(min-height: 854px)' },
},
},
},
plugins: [],
}