@open-tender/store
Version:
A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API
45 lines (44 loc) • 1.14 kB
JavaScript
import { theme } from '../utils';
var categoryNav = {
categoryNav: {
classes: '',
props: {},
style: {
alignItems: 'center',
borderBottomColor: theme.colors.border.primary,
borderBottomWidth: 1,
borderLeftWidth: 0,
borderRightWidth: 0,
borderTopWidth: 0,
borderStyle: 'solid',
flexBasis: 'auto',
flexDirection: 'row',
flexGrow: 0,
flexShrink: 0,
height: 60,
justifyContent: 'center',
overflow: 'hidden'
}
},
categoryNav__content: {
classes: 'hide-scrollbar',
props: {},
style: {
alignItems: 'center',
flexDirection: 'row',
height: 60,
overflow: 'scroll'
}
},
categoryNav__categories: {
classes: '',
props: {},
style: {
alignItems: 'center',
flexDirection: 'row',
flexGrow: 1,
paddingLeft: theme.spacing.padding.medium
}
}
};
export default categoryNav;