Skip to content

Commit

Permalink
fix(Input): Fix placement of input-addons
Browse files Browse the repository at this point in the history
  • Loading branch information
raulsteurer committed Nov 10, 2023
1 parent ae9a2b4 commit e2c4da2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/constants/componentCustomizations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -371,25 +371,25 @@ const inputSizes = {
xl: {
...CustomizedText.sizes.mdLowNormal,
px: '4',
h: '16',
height: '16',
borderRadius: 'xl',
},
lg: {
...CustomizedText.sizes.smLowNormal,
px: '4',
h: '12',
height: '12',
borderRadius: 'lg',
},
md: {
...CustomizedText.sizes.smLowNormal,
px: '4',
h: '10',
height: '10',
borderRadius: 'lg',
},
sm: {
...CustomizedText.sizes.smLowNormal,
px: '3',
h: '8',
height: '8',
borderRadius: 'md',
},
};
Expand Down Expand Up @@ -431,26 +431,26 @@ export const CustomizedPinInput = {
sizes: {
xl: {
fontSize: inputSizes.xl.fontSize,
w: inputSizes.xl.h,
h: inputSizes.xl.h,
w: inputSizes.xl.height,
h: inputSizes.xl.height,
borderRadius: inputSizes.xl.borderRadius,
},
lg: {
fontSize: inputSizes.lg.fontSize,
w: inputSizes.lg.h,
h: inputSizes.lg.h,
w: inputSizes.lg.height,
h: inputSizes.lg.height,
borderRadius: inputSizes.lg.borderRadius,
},
md: {
fontSize: inputSizes.md.fontSize,
w: inputSizes.md.h,
h: inputSizes.md.h,
w: inputSizes.md.height,
h: inputSizes.md.height,
borderRadius: inputSizes.md.borderRadius,
},
sm: {
fontSize: inputSizes.sm.fontSize,
w: inputSizes.sm.h,
h: inputSizes.sm.h,
w: inputSizes.sm.height,
h: inputSizes.sm.height,
borderRadius: inputSizes.sm.borderRadius,
},
},
Expand Down

1 comment on commit e2c4da2

@vercel
Copy link

@vercel vercel bot commented on e2c4da2 Nov 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.