summaryrefslogtreecommitdiffhomepage
path: root/app/components/LayoutStyles.js
blob: ab32d45e7b0b0d8a73d7db72a2698ff93840a1a8 (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',
    }
  }),
};