From 3caa1f24ebb447f81af8e117144e1398d6739aad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20=C3=85lund?= Date: Sun, 9 Feb 2020 17:17:08 +0100 Subject: [PATCH] Made logo link to home --- .../app/src/components/SideBar/SideBar.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/frontend/packages/app/src/components/SideBar/SideBar.tsx b/frontend/packages/app/src/components/SideBar/SideBar.tsx index 0f2468939b..20855ff2cf 100644 --- a/frontend/packages/app/src/components/SideBar/SideBar.tsx +++ b/frontend/packages/app/src/components/SideBar/SideBar.tsx @@ -92,7 +92,6 @@ const SidebarItem: FC = ({ const useSidebarLogoStyles = makeStyles({ root: { height: drawerWidthClosed, - color: '#fff', display: 'flex', flexFlow: 'row nowrap', alignItems: 'center', @@ -103,14 +102,12 @@ const useSidebarLogoStyles = makeStyles({ alignItems: 'center', justifyContent: 'center', }, - logo: { - fontSize: 32, - }, title: { fontSize: 24, fontWeight: 'bold', marginLeft: 22, whiteSpace: 'nowrap', + color: '#fff', }, titleDot: { color: '#1DB954', @@ -123,10 +120,12 @@ const SidebarLogo: FC<{}> = () => { return (
- - {open ? 'Backstage' : 'B'} - . - + + + {open ? 'Backstage' : 'B'} + . + +
); };