diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/ScrollToTop.tsx | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/components/ScrollToTop.tsx b/src/components/ScrollToTop.tsx index 2c5e9ca..231c9e8 100644 --- a/src/components/ScrollToTop.tsx +++ b/src/components/ScrollToTop.tsx @@ -59,8 +59,10 @@ class ScrollToTop extends React.Component {          if (window.pageYOffset > 250) {              last_ref.current.style.opacity = "1"; +            last_ref.current.style.cursor = "pointer";          } else {              last_ref.current.style.opacity = "0"; +            last_ref.current.style.cursor = "default";          }      } | 
