feat: adjust image gallery display style

This commit is contained in:
codytseng 2024-11-17 15:36:13 +08:00
parent f604bdf4c1
commit 75ad7e64c4
5 changed files with 720 additions and 22 deletions

View file

@ -1,6 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/renderer/**/*.{ts,tsx}'],
content: [
'./src/renderer/**/*.{ts,tsx}',
'./node_modules/@nextui-org/theme/dist/components/image.js'
],
prefix: '',
theme: {
container: {
@ -49,5 +52,5 @@ module.exports = {
}
}
},
plugins: [require('tailwindcss-animate')]
plugins: [require('tailwindcss-animate'), require('@nextui-org/theme')]
}