diff --git a/packages/twenty-front/src/modules/ui/input/components/ImageInput.tsx b/packages/twenty-front/src/modules/ui/input/components/ImageInput.tsx
index 1c8e348ac..48674256c 100644
--- a/packages/twenty-front/src/modules/ui/input/components/ImageInput.tsx
+++ b/packages/twenty-front/src/modules/ui/input/components/ImageInput.tsx
@@ -52,16 +52,17 @@ const StyledContent = styled.div`
display: flex;
flex: 1;
flex-direction: column;
- justify-content: space-between;
+ justify-content: start;
margin-left: ${({ theme }) => theme.spacing(4)};
+
+ gap: ${({ theme }) => theme.spacing(3)};
`;
const StyledButtonContainer = styled.div`
display: flex;
flex-direction: row;
- > * + * {
- margin-left: ${({ theme }) => theme.spacing(2)};
- }
+
+ gap: ${({ theme }) => theme.spacing(2)};
`;
const StyledText = styled.span`
@@ -143,7 +144,6 @@ export const ImageInput = ({
variant="secondary"
title="Abort"
disabled={!pictureURI || disabled}
- fullWidth
/>
) : (
)}