noteshare.space/webapp/tailwind.config.cjs

9 lines
158 B
JavaScript
Raw Normal View History

2022-06-22 00:30:11 +03:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2022-06-22 19:01:08 +03:00
darkMode: 'class',
2022-06-22 00:30:11 +03:00
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
2022-06-22 19:01:08 +03:00
}
2022-06-22 00:30:11 +03:00
};