Skip to content

Commit 443fd47

Browse files
author
Malte W
committed
remove cursor style from tracks. closes #54 #64
1 parent f223af7 commit 443fd47

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Scrollbars/defaultRenderElements.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ export function renderTrackHorizontalDefault({ style, ...props }) {
1111
right: 2,
1212
bottom: 2,
1313
left: 2,
14-
borderRadius: 3,
15-
cursor: 'pointer'
14+
borderRadius: 3
1615
};
1716
return <div style={finalStyle} {...props} />;
1817
}
@@ -23,8 +22,7 @@ export function renderTrackVerticalDefault({ style, ...props }) {
2322
right: 2,
2423
bottom: 2,
2524
top: 2,
26-
borderRadius: 3,
27-
cursor: 'pointer'
25+
borderRadius: 3
2826
};
2927
return <div style={finalStyle} {...props} />;
3028
}

0 commit comments

Comments
 (0)