theia/tailwind.config.js

14 lines
352 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: {
2024-04-19 23:32:10 +02:00
// cursor: {
// default: 'url(https://i.stack.imgur.com/UOvLJ.png), default',
// pointer: 'url(https://i.stack.imgur.com/UOvLJ.png), pointer',
// },
2024-04-19 05:21:10 +02:00
},
2024-04-04 22:28:58 +02:00
},
plugins: [],
};