1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-24 07:30:19 +01:00
upscayl/tailwind.config.js

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