Skip to content
This repository was archived by the owner on Oct 23, 2025. It is now read-only.

Commit a80400e

Browse files
feat: password letter spacing (#218)
* password letterSpacing 0px * Add changeset file to bump the package version --------- Co-authored-by: Andrew Smith <a.smith@silentworks.co.uk>
1 parent 819666d commit a80400e

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.changeset/dry-candles-roll.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@supabase/auth-ui-svelte': patch
3+
'@supabase/auth-ui-react': patch
4+
'@supabase/auth-ui-solid': patch
5+
---
6+
7+
Fix password letter spacing

packages/react/src/components/UI/Input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const inputDefaultStyles = css({
3636
letterSpacing: '0px',
3737
},
3838
password: {
39-
letterSpacing: '6px',
39+
letterSpacing: '0px',
4040
},
4141
},
4242
},

packages/solid/src/components/UI/Input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const inputDefaultStyles = css({
3737
letterSpacing: '0px',
3838
},
3939
password: {
40-
letterSpacing: '6px',
40+
letterSpacing: '0px',
4141
},
4242
},
4343
},

packages/svelte/src/lib/UI/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
letterSpacing: '0px'
3838
},
3939
password: {
40-
letterSpacing: '6px'
40+
letterSpacing: '0px'
4141
}
4242
}
4343
}

0 commit comments

Comments
 (0)