Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. @media (prefers-dark-interface) {
  2. color: white; background: black
  3. }
  4.  
  5. const stripeElementStyles = {
  6. base: {
  7. color: COLORS.darkGrey,
  8. fontFamily: `-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"`,
  9. fontSize: '18px',
  10. fontSmoothing: 'antialiased',
  11. '::placeholder': {
  12. color: COLORS.midgrey
  13. },
  14. ':-webkit-autofill': {
  15. color: COLORS.icyWhite
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement