Skip to content

Commit

Permalink
Add margin to breadcrumbs
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcretu committed Aug 31, 2023
1 parent aa48eee commit 5fef668
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion ui/src/pages/[feed].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ const FeedPage: NextPageWithLayout = () => {
<main>
<Container maxWidth="sm">
<Box>
<Breadcrumbs separator={<NavigateNext />} aria-label="breadcrumb">
<Breadcrumbs
separator={<NavigateNext />}
aria-label="breadcrumb"
sx={{ mt: 2 }}
>
<Link href={"/"} color="inherit">
All hydrophones
</Link>
Expand Down
6 changes: 5 additions & 1 deletion ui/src/pages/dynamic/[feed].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ const FeedPage: NextPageWithLayout = () => {
<main>
<Container maxWidth="sm">
<Box>
<Breadcrumbs separator={<NavigateNext />} aria-label="breadcrumb">
<Breadcrumbs
separator={<NavigateNext />}
aria-label="breadcrumb"
sx={{ mt: 2 }}
>
<Link href={"/"} color="inherit">
All hydrophones
</Link>
Expand Down

0 comments on commit 5fef668

Please sign in to comment.