Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
40 lines
807 B
TypeScript
40 lines
807 B
TypeScript
import { createStyleSheet } from '../../base/styles/functions.any';
|
|
|
|
/**
|
|
* For styling explanations, see:
|
|
* https://developers.google.com/identity/branding-guidelines.
|
|
*/
|
|
const BUTTON_HEIGHT = 40;
|
|
|
|
/**
|
|
* The styles of the React {@code Components} of google-api.
|
|
*/
|
|
export default createStyleSheet({
|
|
|
|
/**
|
|
* Image of the sign in button (Google branded).
|
|
*/
|
|
signInImage: {
|
|
flex: 1
|
|
},
|
|
|
|
/**
|
|
* An image-based button for sign in.
|
|
*/
|
|
signInButton: {
|
|
alignItems: 'center',
|
|
height: BUTTON_HEIGHT,
|
|
justifyContent: 'center'
|
|
},
|
|
|
|
/**
|
|
* A text-based button for sign out (no sign out button guidance for
|
|
* Google).
|
|
*/
|
|
signOutButton: {
|
|
alignSelf: 'center',
|
|
maxWidth: 120,
|
|
width: 'auto'
|
|
}
|
|
});
|