Skip to content

Commit

Permalink
clients/web: tweak Stripe payment appearance to match new dark mode c…
Browse files Browse the repository at this point in the history
…ontrast
  • Loading branch information
frankie567 committed Nov 7, 2024
1 parent 01dfec3 commit 8314ecd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/apps/web/src/components/Checkout/CheckoutForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -713,10 +713,10 @@ const StripeCheckoutForm = (props: CheckoutFormProps) => {
},
'.Input': {
padding: '12px',
backgroundColor: theme === 'dark' ? 'rgb(16, 16, 20)' : 'white',
backgroundColor: theme === 'dark' ? 'rgb(21, 22, 25)' : 'white',
color: theme === 'dark' ? '#E5E5E1' : '#181A1F',
borderRadius: '9999px',
borderColor: theme === 'dark' ? 'rgb(21, 21, 25)' : '#EEE',
borderColor: theme === 'dark' ? 'rgb(28, 29, 33)' : '#EEE',
boxShadow: inputBoxShadow,
},
'.Input:focus': {
Expand Down

0 comments on commit 8314ecd

Please sign in to comment.