Fix Overlay formatting regression

This commit is contained in:
Timothy Farrell 2018-01-05 16:39:44 -06:00
parent bc4b78103c
commit 25fe9dd71f

View File

@ -1,9 +1,13 @@
import { styled } from '../../services/style.js';
import { FILL_STYLE } from '..//styles.js';
export const Overlay = styled({
export const Overlay = styled(
{
alignItems: 'center',
flex: 1,
flexDirection: 'column',
justifyContent: 'center',
display: 'flex'
});
},
FILL_STYLE
);