fix: padding on DashboardFileType

This commit is contained in:
diced
2024-06-13 21:36:59 -07:00
parent 988e769b63
commit cf86a4f0c3

View File

@@ -28,7 +28,7 @@ function PlaceholderContent({ text, Icon }: { text: string; Icon: Icon }) {
function Placeholder({ text, Icon, ...props }: { text: string; Icon: Icon; onClick?: () => void }) {
return (
<Center style={{ height: '100%', width: '100%', cursor: 'pointed' }} {...props}>
<Center py='xs' style={{ height: '100%', width: '100%', cursor: 'pointed' }} {...props}>
<PlaceholderContent text={text} Icon={Icon} />
</Center>
);