1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-14 10:47:56 +01:00
upscayl/tailwind.config.js

15 lines
284 B
JavaScript
Raw Normal View History

2022-08-15 06:53:14 +02:00
module.exports = {
content: [
"./renderer/pages/**/*.{js,ts,jsx,tsx}",
"./renderer/components/**/*.{js,ts,jsx,tsx}",
],
2022-11-15 15:42:20 +01:00
theme: {
extend: {
spacing: {
128: "28rem",
},
},
},
2022-11-11 22:32:24 +01:00
plugins: [require("daisyui"), require("tailwind-scrollbar")],
2022-08-15 06:53:14 +02:00
};