diff options
Diffstat (limited to 'app/components/LayoutStyles.js')
| -rw-r--r-- | app/components/LayoutStyles.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/components/LayoutStyles.js b/app/components/LayoutStyles.js new file mode 100644 index 0000000000..ab32d45e7b --- /dev/null +++ b/app/components/LayoutStyles.js @@ -0,0 +1,20 @@ +// @flow +import { createViewStyles } from '../lib/styles'; +import { colors } from '../config'; + +export default { + ...createViewStyles({ + layout: { + flexDirection: 'column', + flex: 1, + }, + header: { + flex: 0, + }, + container: { + flex: 1, + backgroundColor: colors.blue, + overflow: 'hidden', + } + }), +}; |
