-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
30 lines (30 loc) · 1.48 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
cursor: {
move: 'url("../assets/cursors/grab.cur") , move',
grab: 'url("../assets/cursors/grab.cur") , grab',
grabbing: 'url("../assets/cursors/grabbing.cur") , grabbing',
pointer: 'url("../assets/cursors/pointer.cur") , none',
notAllowed: 'url("../assets/cursors/not-allowed.cur") , not-allowed',
progress: 'url("../assets/cursors/progress.cur") , progress',
wait: 'url("../assets/cursors/wait.png") , wait',
text: 'url("../assets/cursors/text.cur") , text',
colResize: 'url("../assets/cursors/col-resize.cur") , col-resize',
rowResize: 'url("../assets/cursors/row-resize.cur") , row-resize',
allScroll: 'url("../assets/cursors/grab.cur") , all-scroll',
neswResize: 'url("../assets/cursors/diagonal-tr-bl.cur") , nesw-resize',
nwseResize: 'url("../assets/cursors/diagonal-tl-br.cur") , nwse-resize',
wResize: 'url("../assets/cursors/col-resize.cur") , w-resize',
eResize: 'url("../assets/cursors/col-resize.cur") , e-resize',
nResize: 'url("../assets/cursors/row-resize.cur") , n-resize',
sResize: 'url("../assets/cursors/row-resize.cur") , s-resize',
nsResize: 'url("../assets/cursors/row-resize.cur") , ns-resize',
ewResize: 'url("../assets/cursors/col-resize.cur") , ew-resize',
},
},
plugins: [],
},
}