💄 App shell styling

The modal now looks a little bit better
This commit is contained in:
Aj - Thomas
2022-05-16 12:37:38 +02:00
committed by ajnart
parent c5178ee288
commit 509873db55

View File

@@ -12,6 +12,7 @@ import {
LoadingOverlay,
ActionIcon,
Tooltip,
Title,
} from '@mantine/core';
import { useForm } from '@mantine/form';
import { motion } from 'framer-motion';
@@ -26,11 +27,11 @@ export function AddItemShelfButton(props: any) {
return (
<>
<Modal
size="xl"
size="md"
radius="md"
title={<Title order={3}>Add service</Title>}
opened={props.opened || opened}
onClose={() => setOpened(false)}
title="Add a service"
>
<AddAppShelfItemForm setOpened={setOpened} />
</Modal>