diff --git a/src/components/ScrollTopButton.js b/src/components/ScrollTopButton.js index 1a73fbc..e202fe9 100644 --- a/src/components/ScrollTopButton.js +++ b/src/components/ScrollTopButton.js @@ -23,9 +23,17 @@ export const ScrollTopButton = () => { return ( scrollToTop()} - style={{display: visible ? 'inline' : 'none'}} + style={{ + display: visible ? 'inline' : 'none', + position: 'fixed', + right: '50px', + bottom: '90px', + fontSize: '3rem', + zIndex: 1, + cursor: 'pointer' + }} /> ) } \ No newline at end of file