Skip to content

Commit 2361925

Browse files
authored
Remove checkbox padding (twentyhq#5733)
Regression has been introduced by this PR twentyhq#4883 Production <img width="885" alt="Capture d’écran 2024-06-04 à 14 51 19" src="https://github.com/twentyhq/twenty/assets/22936103/ad6d8490-815c-485a-b9c0-945aa7fba45c"> After fix <img width="885" alt="Capture d’écran 2024-06-04 à 14 51 41" src="https://github.com/twentyhq/twenty/assets/22936103/72fd6094-21c2-4737-bd20-0faf9adceb38">
1 parent af5d946 commit 2361925

File tree

1 file changed

+0
-2
lines changed
  • packages/twenty-front/src/modules/ui/input/components

1 file changed

+0
-2
lines changed

packages/twenty-front/src/modules/ui/input/components/Checkbox.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ const StyledInputContainer = styled.div<InputProps>`
5353
5454
cursor: ${({ disabled }) => (disabled ? 'not-allowed' : 'pointer')};
5555
display: flex;
56-
padding: ${({ checkboxSize }) =>
57-
checkboxSize === CheckboxSize.Large ? '6px' : '5px'};
5856
position: relative;
5957
${({ hoverable, isChecked, theme, indeterminate, disabled }) => {
6058
if (!hoverable || disabled === true) return '';

0 commit comments

Comments
 (0)