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'} + . + +
); };