28 lines
717 B
JavaScript
28 lines
717 B
JavaScript
import variables from '../../common/styles/variables';
|
|
export default {
|
|
container: {
|
|
justifyContent: 'flex-start',
|
|
flexDirection: 'row',
|
|
backgroundColor: 'white'
|
|
},
|
|
item: {
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
paddingHorizontal: variables.mtdHSpacingXL,
|
|
paddingVertical: variables.mtdVSpacingX3L
|
|
},
|
|
itemText: {
|
|
fontSize: variables.mtdFontSizeM,
|
|
},
|
|
cascaderMenuItemSelected: {
|
|
backgroundColor: variables.mtdFillGray
|
|
},
|
|
selectedIcon: {
|
|
width: 5,
|
|
height: 8,
|
|
position: 'absolute',
|
|
right: 0
|
|
}
|
|
};
|
|
//# sourceMappingURL=styles.js.map
|