Skip to content

Commit

Permalink
#2262: fix extra space in between Breadcrumb and Content
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjeevkumar321 committed Feb 13, 2024
1 parent 11cec92 commit 32b41fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layouts/GeneralLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ const GeneralLayout = ({ children }: { children: ReactNode }) => {
<main
data-custom="restrict-click-outside"
className={clsx(
'flex flex-col justify-between min-h-full px-4 pb-2 md:ml-[290px] lg:w-[calc(100%-290px)]',
'flex flex-col min-h-full px-4 pb-2 md:ml-[290px] lg:w-[calc(100%-290px)]',

pathname != '/' && ' transition-color ease-in-out duration-200',
'bg-theme-primary-light dark:bg-inherit'
)}
id="main"
>
{children}
<div className="flex-grow">{children}</div>
<Footer />
<MobileBottomNav />
</main>
Expand Down

0 comments on commit 32b41fb

Please sign in to comment.