Add gradient to scrollToTop

This commit is contained in:
Brian Lovin 2019-01-13 19:11:20 -08:00
parent 18de32497d
commit 5a11f77166

View file

@ -101,6 +101,7 @@ export const ScrollToTop = styled.button`
transition: all 0.2s ease-in-out;
opacity: ${props => (props.isVisible ? '1' : '0')};
background: ${theme.text.default};
background-image: radial-gradient(circle at top right, #a913de, #6ac9ff);
color: ${theme.bg.default};
transform: translateY(${props => (props.isVisible ? '0' : '80px')});
cursor: pointer;