diff --git a/src/shared/components/details-panel/layout.tsx b/src/shared/components/details-panel/layout.tsx index 01c4926..2959df3 100644 --- a/src/shared/components/details-panel/layout.tsx +++ b/src/shared/components/details-panel/layout.tsx @@ -6,16 +6,22 @@ import { DetailsPanelBackButton } from './back-button'; interface Props { backHref: string; children: React.ReactNode; + backButton: React.ReactNode; } export const DetailsPanelLayout = ({ backHref, children }: Props) => { return ( -
+
} className="z-50 bg-[#191919] md:left-auto md:right-0 md:flex md:w-[calc((100%-220px))] lg:hidden" /> -
{children}
+
+
+ +
+ {children} +
diff --git a/src/shared/components/list-page-layout.tsx b/src/shared/components/list-page-layout.tsx index 55eb1e1..c192f48 100644 --- a/src/shared/components/list-page-layout.tsx +++ b/src/shared/components/list-page-layout.tsx @@ -7,7 +7,7 @@ export const ListPageLayout = ({ children, list }: Props) => { return ( <>
-
+
{list}