diff --git a/docs/src/new-components/layout/Header.js b/docs/src/new-components/layout/Header.js index b922fdfebb2..d3833817498 100644 --- a/docs/src/new-components/layout/Header.js +++ b/docs/src/new-components/layout/Header.js @@ -8,7 +8,7 @@ import { navLinks } from './PageLayout'; const { color, typography, spacing, breakpoint } = styles; const { metadata, url } = site; -const LogotypeWrapper = styled(Link)` +const LogotypeWrapper = styled.a` display: inline-block; img { height: 22px; @@ -20,15 +20,6 @@ const LogotypeWrapper = styled(Link)` } display: block; - - transition: all 150ms ease-out; - transform: translate3d(0, 0, 0); - &:hover { - transform: translate3d(0, -1px, 0); - } - &:active { - transform: translate3d(0, 0, 0); - } } `; @@ -150,7 +141,7 @@ export default function Header({ ...props }) {