summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components/SelectLocationStyles.tsx
blob: ad6c116436d17d91e836d2c34692a33cfe5af967 (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
import { Styles } from 'reactxp';
import { colors } from '../../config.json';

export default {
  select_location: Styles.createViewStyle({
    backgroundColor: colors.darkBlue,
    flex: 1,
  }),
  container: Styles.createViewStyle({
    flexDirection: 'column',
    flex: 1,
  }),
  content: Styles.createViewStyle({
    overflow: 'visible',
  }),
  navigationBarAttachment: Styles.createTextStyle({
    marginTop: 8,
    paddingHorizontal: 4,
  }),
  scopeBar: Styles.createViewStyle({
    marginTop: 8,
  }),
  selectedCell: Styles.createViewStyle({
    backgroundColor: colors.green,
  }),
};