Skip to content

Commit 9c0eb6b

Browse files
authored
chore: use grabbing cursor on resize
1 parent ea9f17b commit 9c0eb6b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/module/src/DataViewTh/DataViewTh.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ const useStyles = createUseStyles({
3131
position: 'absolute',
3232
insetInlineEnd: `calc(${globalFontSizeBodyDefault.var} / 2)`,
3333
insetBlockEnd: tableCellPaddingBlockEnd.var,
34-
cursor: 'grab'
34+
cursor: 'grab',
35+
'&:active': {
36+
cursor: 'grabbing',
37+
},
3538
},
3639
});
3740
export interface DataViewThResizableProps {

0 commit comments

Comments
 (0)