1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-19 09:27:27 +01:00
upscayl/tailwind.config.js

12 lines
232 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}",
],
theme: {
extend: {},
},
darkMode: "class",
2022-08-18 15:23:23 +05:30
plugins: [require("tailwind-scrollbar")],
2022-08-15 10:23:14 +05:30
};