Skip to content

Commit

Permalink
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/app/src/client/components/Sidebar/Bookmarks.tsx
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ export const Bookmarks = () : JSX.Element => {
return (
<div className="px-3">
<div className="grw-sidebar-content-header">
<h2 className="fs-6 fw-bold mb-0 py-4">{t('Bookmarks')}</h2>
<h3 className="fs-6 fw-bold mb-0 py-4">{t('Bookmarks')}</h3>
</div>
{isGuestUser ? (
<h4 className="fs-6">
Original file line number Diff line number Diff line change
@@ -20,10 +20,10 @@ export const CustomSidebar = (): JSX.Element => {
return (
<div className="pt-4 pb-3 px-3">
<div className="grw-sidebar-content-header d-flex">
<h2 className="fs-6 fw-bold mb-0">
<h3 className="fs-6 fw-bold mb-0">
{t('CustomSidebar')}
{ !isLoading && <Link href="/Sidebar#edit" className="h6 ms-2"><span className="material-symbols-outlined">edit</span></Link> }
</h2>
</h3>
{ !isLoading && <SidebarHeaderReloadButton onClick={() => mutate()} /> }
</div>

Original file line number Diff line number Diff line change
@@ -17,9 +17,9 @@ export const InAppNotification = (): JSX.Element => {
return (
<div className="px-3">
<div className="grw-sidebar-content-header py-4 d-flex">
<h2 className="fs-6 fw-bold mb-0">
<h3 className="fs-6 fw-bold mb-0">
{t('In-App Notification')}
</h2>
</h3>
</div>

<InAppNotificationForms
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ export const PageTree = (): JSX.Element => {
return (
<div className="pt-4 pb-3 px-3">
<div className="grw-sidebar-content-header d-flex">
<h2 className="fs-6 fw-bold mb-0">{t('Page Tree')}</h2>
<h3 className="fs-6 fw-bold mb-0">{t('Page Tree')}</h3>
<Suspense>
<PageTreeHeader
isWipPageShown={isWipPageShown}
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ export const RecentChanges = (): JSX.Element => {
return (
<div className="px-3" data-testid="grw-recent-changes">
<div className="grw-sidebar-content-header py-4 d-flex">
<h2 className="fs-6 fw-bold mb-0 text-nowrap">{t('Recent Changes')}</h2>
<h3 className="fs-6 fw-bold mb-0 text-nowrap">{t('Recent Changes')}</h3>
<Suspense>
<RecentChangesHeader
isSmall={isSmall}
2 changes: 1 addition & 1 deletion apps/app/src/client/components/Sidebar/Tag.tsx
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ const Tag: FC = () => {
return (
<div className="container-lg px-3 mb-5 pb-5" data-testid="grw-sidebar-content-tags">
<div className="grw-sidebar-content-header pt-4 pb-3 d-flex">
<h2 className="fs-6 fw-bold mb-0">{t('Tags')}</h2>
<h3 className="fs-6 fw-bold mb-0">{t('Tags')}</h3>
<SidebarHeaderReloadButton onClick={() => onReload()} />
</div>

0 comments on commit 2e23f97

Please sign in to comment.