summaryrefslogtreecommitdiffhomepage
path: root/app/components/LayoutStyles.js
blob: b3ef4f462e91cb68c7a2e26e64846eb57a279930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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',
    },
  }),
};