ryoji-s пре 2 година
родитељ
комит
37e5d7dfc5

+ 0 - 9
apps/app/src/components/Sidebar/AppTitle/AppTitle.module.scss

@@ -23,10 +23,6 @@
     }
     }
   }
   }
 
 
-  .grw-site-name {
-    cursor: default;
-  }
-
   .confidential-tooltip {
   .confidential-tooltip {
     max-width: 180px;
     max-width: 180px;
   }
   }
@@ -96,10 +92,5 @@
   .grw-site-name {
   .grw-site-name {
     --bs-link-color-rgb: var(--grw-app-title-color-rgb, var(--bs-tertiary-color-rgb));
     --bs-link-color-rgb: var(--grw-app-title-color-rgb, var(--bs-tertiary-color-rgb));
     --bs-link-opacity: 0.5;
     --bs-link-opacity: 0.5;
-
-    span {
-      color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
-      text-decoration: none;
-    }
   }
   }
 }
 }

+ 2 - 2
apps/app/src/components/Sidebar/AppTitle/AppTitle.tsx

@@ -30,9 +30,9 @@ const AppTitleSubstance = memo((props: Props): JSX.Element => {
       </Link>
       </Link>
       <div className="flex-grow-1 d-flex align-items-center justify-content-between gap-3 overflow-hidden">
       <div className="flex-grow-1 d-flex align-items-center justify-content-between gap-3 overflow-hidden">
         <div id="grw-site-name" className="grw-site-name text-truncate">
         <div id="grw-site-name" className="grw-site-name text-truncate">
-          <span className="fs-4">
+          <Link href="/" className="fs-4">
             {appTitle}
             {appTitle}
-          </span>
+          </Link>
         </div>
         </div>
       </div>
       </div>
       {!(confidential == null || confidential === '')
       {!(confidential == null || confidential === '')