reduce spacing between buttons to fix toolbar not fitting on a single line on mobile

This commit is contained in:
Athou
2022-10-29 08:05:00 +02:00
parent fb96631351
commit fecd6451d5
3 changed files with 12 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
import { Group } from "@mantine/core"
export function ButtonToolbar(props: { children: React.ReactNode }) {
return <Group spacing={14}>{props.children}</Group>
}