File tree 1 file changed +4
-7
lines changed
packages/twenty-front/src/modules/ui/input/components
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -54,15 +54,15 @@ const StyledContent = styled.div`
54
54
flex-direction: column;
55
55
justify-content: start;
56
56
margin-left: ${ ( { theme } ) => theme . spacing ( 4 ) } ;
57
- gap:5px;
57
+
58
+ gap: ${ ( { theme } ) => theme . spacing ( 3 ) } ;
58
59
` ;
59
60
60
61
const StyledButtonContainer = styled . div `
61
62
display: flex;
62
63
flex-direction: row;
63
- > * + * {
64
- margin-left: ${ ( { theme } ) => theme . spacing ( 2 ) } ;
65
- }
64
+
65
+ gap: ${ ( { theme } ) => theme . spacing ( 2 ) } ;
66
66
` ;
67
67
68
68
const StyledText = styled . span `
@@ -144,7 +144,6 @@ export const ImageInput = ({
144
144
variant = "secondary"
145
145
title = "Abort"
146
146
disabled = { ! pictureURI || disabled }
147
- fullWidth
148
147
/>
149
148
) : (
150
149
< Button
@@ -153,7 +152,6 @@ export const ImageInput = ({
153
152
variant = "secondary"
154
153
title = "Upload"
155
154
disabled = { disabled }
156
- fullWidth
157
155
/>
158
156
) }
159
157
< Button
@@ -162,7 +160,6 @@ export const ImageInput = ({
162
160
variant = "secondary"
163
161
title = "Remove"
164
162
disabled = { ! pictureURI || disabled }
165
- fullWidth
166
163
/>
167
164
</ StyledButtonContainer >
168
165
< StyledText >
You can’t perform that action at this time.
0 commit comments