You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // @flow
  2. import { createStyleSheet } from '../../base/styles';
  3. /**
  4. * For styling explanations, see:
  5. * https://developers.google.com/identity/branding-guidelines.
  6. */
  7. const BUTTON_HEIGHT = 40;
  8. /**
  9. * The styles of the React {@code Components} of google-api.
  10. */
  11. export default createStyleSheet({
  12. /**
  13. * Image of the sign in button (Google branded).
  14. */
  15. signInImage: {
  16. flex: 1
  17. },
  18. /**
  19. * An image-based button for sign in.
  20. */
  21. signInButton: {
  22. alignItems: 'center',
  23. height: BUTTON_HEIGHT,
  24. justifyContent: 'center'
  25. },
  26. /**
  27. * A text-based button for sign out (no sign out button guidance for
  28. * Google).
  29. */
  30. signOutButton: {
  31. alignSelf: 'center',
  32. maxWidth: 104,
  33. width: 'auto'
  34. }
  35. });