- {sidebar
- && (isMobile || isTablet) && (
-
(
-
-
-
- )}
- >
- {({ hide }) => }
-
+ {sidebar && (isMobile || isTablet) && (
+
(
+
+
+
+ )}
+ >
+ {({ hide }) => }
+
)}
{title}
+ {sidebar && (isMobile || isTablet) &&
}
)
diff --git a/src/layout/brand/brand.module.css b/src/layout/brand/brand.module.css
index 5a1885502..446ba4bf4 100644
--- a/src/layout/brand/brand.module.css
+++ b/src/layout/brand/brand.module.css
@@ -21,7 +21,11 @@
text-decoration: none;
}
-.brand > .burgerLink:hover {
+.brand > .burgerLink {
+ width: 40px;
+}
+
+.brand > .burgerLink:hover {
color: var(--secondary-color-font);
}
@@ -31,4 +35,4 @@
.mobileSidebar {
height: calc(100% - var(--layout-navbar-height));
-}
\ No newline at end of file
+}
diff --git a/src/layout/navbar/navbar.jsx b/src/layout/navbar/navbar.jsx
index c1d510e68..608bd8397 100644
--- a/src/layout/navbar/navbar.jsx
+++ b/src/layout/navbar/navbar.jsx
@@ -5,15 +5,13 @@ import cn from 'classnames'
import IconLink from 'components/iconLink'
import IconLabel from 'components/iconLabel'
-import AvatarDropdown from './avatarDropdown'
+import AvatarDropdown from '../avatarDropdown'
import './navbar.css'
const Navbar = ({ name, className }) => (