Skip to content

Commit

Permalink
feat: fix back button visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
PupoSDC committed Jan 17, 2024
1 parent eb08aa7 commit a9171dc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,11 @@ export const LayoutModule = container<Props, Params, Data>(
))}
{breadcrumbs && <Typography>{breadcrumbs?.at(-1)}</Typography>}
</Breadcrumbs>
<BackButton sx={{ ml: 2, display: { md: "medium" } }} />
<BackButton sx={{ ml: 2, display: ["flex", "none"] }} />
<GithubButton sx={{ ml: "auto" }} />
<ThemeButton />
<HamburgerButton
sx={{ display: { md: "medium" } }}
sx={{ display: ["flex", "none"] }}
onClick={openSidebar}
/>
</Stack>
Expand Down

0 comments on commit a9171dc

Please sign in to comment.