Skip to content

Commit 01f013d

Browse files
committed
feat: add gap to ContentShell actions
1 parent b133894 commit 01f013d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/ui/src/components/ContentShell.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Flex, Paper, Title } from "@mantine/core";
1+
import { Flex, Group, Paper, Title } from "@mantine/core";
22
import { PropsWithChildren, ReactElement } from "react";
33

44
type Props = PropsWithChildren<{
@@ -13,7 +13,7 @@ export function ContentShell({ title, breadcrumbs, actions, children }: Props) {
1313
{breadcrumbs}
1414
<Flex justify="space-between">
1515
<Title>{title}</Title>
16-
<div>{actions}</div>
16+
<Group>{actions}</Group>
1717
</Flex>
1818
<Paper my="lg">{children}</Paper>
1919
</>

0 commit comments

Comments
 (0)