We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffbd2d1 commit 32fa408Copy full SHA for 32fa408
src/components/Layout/index.jsx
@@ -15,11 +15,13 @@ const Layout = ({ children }) => {
15
<div className="flex">
16
<Sidebar showSidebar={showSidebar} setShowSidebar={setShowSidebar} />
17
<div className="w-[100%] px-4 mt-[80px] md:px-0 overflow-x-hidden md:w-[1350px] layout md:pr-[300px] md:mt-[100px] md:mx-auto pb-10">
18
- <div className="flex justify-end md:mb-[-60px]" >
19
- {router.pathname !== "/404" &&
20
- router.pathname !== "/" &&
21
- router.pathname !== "/tv" && <PageActionButtons />}
22
- </div>
+ {router.pathname !== "/404" &&
+ router.pathname !== "/" &&
+ router.pathname !== "/tv" && (
+ <div className="flex justify-end md:mb-[-60px]">
+ <PageActionButtons />
23
+ </div>
24
+ )}
25
{children}
26
</div>
27
0 commit comments