Browse Source

WIP: add collapse button

Yuki Takei 2 years ago
parent
commit
560f6de55e
1 changed files with 4 additions and 1 deletions
  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();
   const { data: isDefaultLogo } = useIsDefaultLogo();
 
 
   return (
   return (
-    <div className={styles['grw-sidebar-head']}>
+    <div className={`${styles['grw-sidebar-head']} d-flex justify-content-between`}>
       {/* Brand Logo  */}
       {/* Brand Logo  */}
       <Link href="/" className="grw-logo d-block">
       <Link href="/" className="grw-logo d-block">
         <SidebarBrandLogo isDefaultLogo={isDefaultLogo} />
         <SidebarBrandLogo isDefaultLogo={isDefaultLogo} />
       </Link>
       </Link>
+      <button type="button" className="btn btn-secondary btn-lg">
+        <span className="material-icons">first_page</span>
+      </button>
     </div>
     </div>
   );
   );