theia/tailwind.config.js

14 lines
340 B
JavaScript
Raw Normal View History

2024-04-04 22:28:58 +02:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
2024-04-19 05:21:10 +02:00
extend: {
cursor: {
default: 'url(https://i.stack.imgur.com/UOvLJ.png), default',
pointer: 'url(https://i.stack.imgur.com/UOvLJ.png), pointer',
},
},
2024-04-04 22:28:58 +02:00
},
plugins: [],
};