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 { styled } from '../../services/style.js';
import { FILL_STYLE } from '..//styles.js';
export const Overlay = styled({ export const Overlay = styled(
alignItems: 'center', {
flex: 1, alignItems: 'center',
flexDirection: 'column', flex: 1,
justifyContent: 'center', flexDirection: 'column',
display: 'flex' justifyContent: 'center',
}); display: 'flex'
},
FILL_STYLE
);