a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

small tweaks

celine 1ee32442 ae1109f0

+7 -7
+6 -6
components/ActionBar/Navigation.tsx
··· 26 26 }) => { 27 27 let { identity } = useIdentityData(); 28 28 return ( 29 - <div className="flex flex-col gap-2"> 30 - {identity?.atp_did && ( 31 - <Sidebar alwaysOpen> 32 - <NotificationButton /> 33 - </Sidebar> 34 - )} 29 + <div className="flex flex-col gap-3"> 35 30 <Sidebar alwaysOpen> 36 31 <NavigationOptions 37 32 currentPage={props.currentPage} 38 33 publication={props.publication} 39 34 /> 40 35 </Sidebar> 36 + {identity?.atp_did && ( 37 + <Sidebar alwaysOpen> 38 + <NotificationButton current={props.currentPage === "notifications"} /> 39 + </Sidebar> 40 + )} 41 41 </div> 42 42 ); 43 43 };
+1 -1
components/PageLayouts/DashboardLayout.tsx
··· 166 166 className={`dashboard pwa-padding relative max-w-(--breakpoint-lg) w-full h-full mx-auto flex sm:flex-row flex-col sm:items-stretch sm:px-6`} 167 167 > 168 168 <MediaContents mobile={false}> 169 - <div className="flex flex-col gap-4 my-6"> 169 + <div className="flex flex-col gap-3 my-6"> 170 170 <DesktopNavigation 171 171 currentPage={props.currentPage} 172 172 publication={props.publication}