From 70dae9acdfc12a0377885d16d009ff2d2ec578ab Mon Sep 17 00:00:00 2001 From: Demetriad Sinzeanu <demetriad.sinzeanu@thinslices.com> Date: Tue, 9 Oct 2018 14:15:35 +0300 Subject: [PATCH] fix(AppBar/Logo): Hovering over the hindawi logo should change the cursor to a pointer --- packages/component-faraday-ui/src/AppBar.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/component-faraday-ui/src/AppBar.js b/packages/component-faraday-ui/src/AppBar.js index 8659117a3..f1eef4177 100644 --- a/packages/component-faraday-ui/src/AppBar.js +++ b/packages/component-faraday-ui/src/AppBar.js @@ -72,7 +72,7 @@ export default compose( const RightContainer = styled.div` align-items: center; display: flex; - height ${th('appBar.height')}; + height: ${th('appBar.height')}; margin-right: ${th('gridUnit')}; height: ${th('appBar.height')}; @@ -84,13 +84,15 @@ const RightContainer = styled.div` const LogoContainer = styled.div` align-items: center; display: flex; - height ${th('appBar.height')}; + height: ${th('appBar.height')}; margin-left: ${th('gridUnit')}; position: absolute; top: 0; left: 0; z-index: 1; + + cursor: pointer; ` const JournalBackground = styled.div` -- GitLab