Skip to content

Commit

Permalink
fix(clerk-js): Fix Phone input styling (#2424)
Browse files Browse the repository at this point in the history
  • Loading branch information
octoper authored Dec 20, 2023
1 parent 2504eb3 commit a97d74d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .changeset/few-beers-wink.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
1 change: 0 additions & 1 deletion packages/clerk-js/src/ui/elements/Card/CardContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export const CardContent = React.forwardRef<HTMLDivElement, CardContentProps>((p
sx={[
t => ({
backgroundColor: t.colors.$colorBackground,
overflow: 'hidden',
willChange: 'transform, opacity, height',
transitionProperty: t.transitionProperty.$common,
transitionDuration: '200ms',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const CountryCodeListItem = memo((props: CountryCodeListItemProps) => {
/>
<Text
as='div'
sx={{ width: '100%' }}
sx={{ width: '100%', textAlign: 'left' }}
>
{country.name}
</Text>
Expand Down
2 changes: 1 addition & 1 deletion packages/clerk-js/src/ui/elements/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const SelectSearchbar = (props: PropsOfComponent<typeof InputWithIcon>) => {
t => ({
border: 'none',
borderRadius: t.radii.$md,
backgroundColor: t.colors.$blackAlpha200,
backgroundColor: t.colors.$blackAlpha50,
padding: t.space.$2,
}),
sx,
Expand Down

0 comments on commit a97d74d

Please sign in to comment.