summaryrefslogtreecommitdiffhomepage
path: root/app/components/SettingsStyles.js
blob: c67edcecf9d93cb1b733da440e60d5ffb4399281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { createViewStyles, createTextStyles } from '../lib/styles';
import { colors } from '../config';

export default {
  ...createViewStyles({
    settings: {
      backgroundColor: colors.darkBlue,
      flex: 1,
    },
    settings__container: {
      flexDirection: 'column',
      flex: 1,
    },
    settings__content: {
      flexDirection: 'column',
      flex: 1,
      justifyContent: 'space-between',
      overflow: 'visible',
    },
    settings__scrollview: {
      flexGrow: 1,
      flexShrink: 1,
      flexBasis: '100%',
    },
    settings__cell_spacer: {
      height: 24,
      flex: 0,
    },
    settings__footer: {
      paddingTop: 24,
      paddingBottom: 24,
      paddingLeft: 24,
      paddingRight: 24,
    },
  }),
  ...createTextStyles({
    settings__account_paid_until_label__error: {
      color: colors.red,
    },
  }),
};