File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed
Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,11 @@ const Top = () => {
6161 "/dashboard/spaces/browse" : "Browse Spaces" ,
6262 } ;
6363
64- const title = activeSpace ? activeSpace . name : pathname . includes ( "/dashboard/folder" ) ? "Caps" : titles [ pathname ] || "" ;
64+ const title = activeSpace
65+ ? activeSpace . name
66+ : pathname . includes ( "/dashboard/folder" )
67+ ? "Caps"
68+ : titles [ pathname ] || "" ;
6569
6670 const notificationsRef : MutableRefObject < HTMLDivElement > = useClickAway (
6771 ( e ) => {
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ export default async function DashboardLayout({
8080 userPreferences = { userPreferences }
8181 >
8282 < div className = "dashboard-grid" >
83- < DesktopNav />
83+ < DesktopNav />
8484 < div className = "flex h-full [grid-area:main] focus:outline-none" >
8585 < MobileNav />
8686 < DashboardInner > { children } </ DashboardInner >
Original file line number Diff line number Diff line change @@ -79,13 +79,7 @@ html {
7979}
8080
8181::-webkit-scrollbar-thumb {
82- background : rgb (178 , 178 , 178 );
83- border-radius : 10px ;
84- }
85-
86- /* Handle */
87- .dark ::-webkit-scrollbar-thumb {
88- background : rgb (61 , 61 , 61 );
82+ background : var (--gray-7 );
8983 border-radius : 10px ;
9084}
9185
You can’t perform that action at this time.
0 commit comments