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 Sep 1, 2023
1 parent 86f15ef commit 0deb667
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 0deb667

Please sign in to comment.