fleet/frontend/components/AuthenticationFormWrapper/styles.js
Jason Meller 1409c294af Add awesome card stacking animations on login (#246)
* Add awesome card stacking animations on login

* Fix linter error

* Fix proptypes warning and clean up if/then logic

* True up vh units

* Make logout pixel perfect with login form
2016-09-28 03:16:09 -07:00

22 lines
472 B
JavaScript

import styles from '../../styles';
const { color } = styles;
export default {
containerStyles: {
alignItems: 'center',
display: 'flex',
justifyContent: 'center',
flexDirection: 'column',
marginTop: '14vh',
},
whiteTabStyles: {
backgroundColor: color.white,
height: '30px',
marginTop: '12px',
borderTopLeftRadius: '4px',
borderTopRightRadius: '4px',
boxShadow: '0 5px 30px 0 rgba(0,0,0,0.3)',
width: '376px',
},
};