Skip to content

Commit

Permalink
feat(fields): modifying padding-bottom for LARGE inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
maximeperrault authored and maximeperraultdev committed Jul 15, 2024
1 parent ec50305 commit 3b2486a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fields/shared/StyledInputBox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ type StyledInputBoxProps = CommonFieldStyleProps & {
}

const PADDING: Record<Size, string> = {
[Size.LARGE]: '8px 16px 12px',
[Size.LARGE]: '8px 16px 10px',
[Size.NORMAL]: '3px 8px 7px',
[Size.SMALL]: '3px 8px 6px'
}

const PADDING_WITH_ICON: Record<Size, string> = {
[Size.LARGE]: '8px 48px 11px 16px',
[Size.LARGE]: '8px 48px 10px 16px',
[Size.NORMAL]: '3px 38px 6px 8px',
[Size.SMALL]: '3px 38px 6px 8px'
}
Expand Down

0 comments on commit 3b2486a

Please sign in to comment.