2016-09-12 15:14:07 +00:00
|
|
|
import styles from '../../styles';
|
|
|
|
|
|
2016-09-28 10:16:09 +00:00
|
|
|
const { color } = styles;
|
2016-09-12 15:14:07 +00:00
|
|
|
|
|
|
|
|
export default {
|
2016-09-19 23:43:35 +00:00
|
|
|
containerStyles: {
|
2016-09-12 15:14:07 +00:00
|
|
|
alignItems: 'center',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
flexDirection: 'column',
|
2016-09-28 10:16:09 +00:00
|
|
|
marginTop: '14vh',
|
2016-09-12 15:14:07 +00:00
|
|
|
},
|
|
|
|
|
whiteTabStyles: {
|
|
|
|
|
backgroundColor: color.white,
|
2016-09-13 19:50:37 +00:00
|
|
|
height: '30px',
|
2016-09-28 10:16:09 +00:00
|
|
|
marginTop: '12px',
|
2016-09-13 19:50:37 +00:00
|
|
|
borderTopLeftRadius: '4px',
|
|
|
|
|
borderTopRightRadius: '4px',
|
|
|
|
|
boxShadow: '0 5px 30px 0 rgba(0,0,0,0.3)',
|
2016-09-28 10:16:09 +00:00
|
|
|
width: '376px',
|
2016-09-12 15:14:07 +00:00
|
|
|
},
|
|
|
|
|
};
|