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
|
import { Styles } from 'reactxp';
import styled from 'styled-components';
import { colors } from '../../config.json';
import { ScopeBar } from './ScopeBar';
export const StyledScopeBar = styled(ScopeBar)({
marginTop: '8px',
});
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,
}),
selectedCell: Styles.createViewStyle({
backgroundColor: colors.green,
}),
};
|