summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components/LayoutStyles.tsx
blob: cebe3f25881a2fa482c1da6477999b9a3da8ba8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Styles } from 'reactxp';
import { colors } from '../../config.json';

export default {
  layout: Styles.createViewStyle({
    flexDirection: 'column',
    flex: 1,
  }),
  header: Styles.createViewStyle({
    flex: 0,
  }),
  container: Styles.createViewStyle({
    flex: 1,
    backgroundColor: colors.blue,
    overflow: 'hidden',
  }),
};