Skip to content

Commit

Permalink
feat: password letter spacing (#218)
Browse files Browse the repository at this point in the history
* password letterSpacing 0px

* Add changeset file to bump the package version

---------

Co-authored-by: Andrew Smith <[email protected]>
  • Loading branch information
Hallidayo and silentworks authored Sep 17, 2023
1 parent 819666d commit a80400e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .changeset/dry-candles-roll.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@supabase/auth-ui-svelte': patch
'@supabase/auth-ui-react': patch
'@supabase/auth-ui-solid': patch
---

Fix password letter spacing
2 changes: 1 addition & 1 deletion packages/react/src/components/UI/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const inputDefaultStyles = css({
letterSpacing: '0px',
},
password: {
letterSpacing: '6px',
letterSpacing: '0px',
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion packages/solid/src/components/UI/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const inputDefaultStyles = css({
letterSpacing: '0px',
},
password: {
letterSpacing: '6px',
letterSpacing: '0px',
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/lib/UI/Input.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
letterSpacing: '0px'
},
password: {
letterSpacing: '6px'
letterSpacing: '0px'
}
}
}
Expand Down

0 comments on commit a80400e

Please sign in to comment.