@shopgate/engage
Version:
Shopgate's ENGAGE library.
1 lines • 846 B
JavaScript
import{css}from'glamor';import{themeConfig,themeColors,themeName}from'@shopgate/pwa-common/helpers/config';var variables=themeConfig.variables;var isIOS=themeName.includes('ios');export var orderNumber=css({fontWeight:500});export var list=css({background:"var(--color-background-accent, ".concat(themeColors.background,")"),marginBottom:"-".concat(variables.gap.small*1.5,"px")});export var cardContent=css({padding:variables.gap.big,display:'flex',flexDirection:'row',justifyContent:'space-between'}).toString();export var column=css({display:'flex',flexDirection:'column'});export var rightAlign=css({textAlign:'right'});export var card=css({marginBottom:variables.gap.small*1.5,':last-of-type':{marginBottom:0},background:themeColors.light,boxSizing:'border-box',boxShadow:themeConfig.shadows.productCard,borderRadius:isIOS?10:2}).toString();