1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-17 11:18:36 +01:00
upscayl/tailwind.config.js

15 lines
284 B
JavaScript
Raw Normal View History

2022-08-15 10:23:14 +05:30
module.exports = {
content: [
"./renderer/pages/**/*.{js,ts,jsx,tsx}",
"./renderer/components/**/*.{js,ts,jsx,tsx}",
],
2022-11-15 20:12:20 +05:30
theme: {
extend: {
spacing: {
128: "28rem",
},
},
},
2022-11-12 03:02:24 +05:30
plugins: [require("daisyui"), require("tailwind-scrollbar")],
2022-08-15 10:23:14 +05:30
};