Skip to content

Commit

Permalink
fix: remove transitions for layout margins (distracting)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehenson committed Jan 13, 2025
1 parent ff17f63 commit a66396f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Layout: React.FC<PropsWithChildren<LayoutProps>> = ({ children, noSidebar
return (
<GlobalLoading>
<Header hideSearchBar={hideSearchBar} />
<div className="flex mx-24 sm:mx-32 md:mx-40 lg:mx-64 pt-64 gap-80 justify-center transition-[margin]">
<div className="flex mx-24 sm:mx-32 md:mx-40 lg:mx-64 pt-64 gap-80 justify-center">
{showSidebar ? <LeftSidebar /> : null}
<Container as="main" className="flex-1">
<Breadcrumbs />
Expand Down

0 comments on commit a66396f

Please sign in to comment.