@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
34 lines (33 loc) • 792 B
JavaScript
import { theme } from '../utils';
var checkout = {
checkout__cart: {
classes: 'hide-scrollbar',
props: {},
style: {
alignItems: 'stretch',
flexGrow: 1,
flexShrink: 1,
overflow: 'scroll',
paddingLeft: theme.spacing.padding.medium,
paddingRight: theme.spacing.padding.medium
}
},
checkout__totals: {
classes: '',
props: {},
style: {
alignItems: 'stretch',
flexGrow: 0,
flexShrink: 0
}
},
checkout__totalsContainer: {
classes: '',
props: {},
style: {
alignItems: 'stretch',
padding: theme.spacing.padding.large
}
}
};
export default checkout;