mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* 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
22 lines
472 B
JavaScript
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',
|
|
},
|
|
};
|