Skip to content

Commit

Permalink
[@mantine/core] Fix inconsistent sizes in PasswordInput (#2484)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdelaziz Marzoug committed Sep 19, 2022
1 parent e21e2b4 commit 8c663f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mantine-core/src/PasswordInput/PasswordInput.tsx
Expand Up @@ -39,8 +39,8 @@ export interface PasswordInputProps

const buttonSizes = {
xs: 22,
sm: 28,
md: 26,
sm: 26,
md: 28,
lg: 32,
xl: 40,
};
Expand All @@ -55,7 +55,7 @@ const iconSizes = {

const rightSectionSizes = {
xs: 28,
sm: 34,
sm: 32,
md: 34,
lg: 44,
xl: 54,
Expand Down

0 comments on commit 8c663f2

Please sign in to comment.