update pagination

This commit is contained in:
Kenta420-Poom 2023-09-25 15:29:42 +07:00
parent 3f399dda0e
commit 51642983c6
15 changed files with 1049 additions and 240 deletions

View file

@ -1,14 +1,15 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./src/**/*.{html,ts}",
"./node_modules/flowbite/**/*.js" // add this line
],
theme: {
extend: {
"backgroundColor": {
"primary": "#EAE6E1",
"secondary": "#F5F5F5",
"third": "#F2994A",
},
"textColor": {
"primary": "#513C2F",
@ -18,6 +19,9 @@ module.exports = {
}
},
},
plugins: [require("flowbite/plugin")],
daisyui: {
themes: ["cupcake"]
},
plugins: [require('daisyui')],
}