Yuki Takei 2 лет назад
Родитель
Сommit
560f6de55e
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      apps/app/src/components/Sidebar/SidebarHead/SidebarHead.tsx

+ 4 - 1
apps/app/src/components/Sidebar/SidebarHead/SidebarHead.tsx

@@ -17,11 +17,14 @@ export const SidebarHead: FC = memo(() => {
   const { data: isDefaultLogo } = useIsDefaultLogo();
 
   return (
-    <div className={styles['grw-sidebar-head']}>
+    <div className={`${styles['grw-sidebar-head']} d-flex justify-content-between`}>
       {/* Brand Logo  */}
       <Link href="/" className="grw-logo d-block">
         <SidebarBrandLogo isDefaultLogo={isDefaultLogo} />
       </Link>
+      <button type="button" className="btn btn-secondary btn-lg">
+        <span className="material-icons">first_page</span>
+      </button>
     </div>
   );