Repository URL to install this package:
|
Version:
2.1.7 ▾
|
import { styled } from 'styleh-components'
import { TextPlaceholder } from '@skava/ui/dist/components/atoms/Placeholder'
const Edit = styled.div `
flex: 1;
display: flex;
justify-content: flex-end;
margin-left: rem(16);
`
const Address = styled.div `
flex: 0 0 rem(250);
`
const ShippingCardWrapper = styled.div `
display: flex;
flex-direction: row;
flex-wrap: wrap;
border: solid rem(1) #ccc;
padding: rem(8);
margin-bottom: rem(16);
justify-content: space-between;
align-items: center;
`
const HeaderWrapper = styled.div `
display: flex;
justify-content: space-between;
margin-bottom: rem(8);
@tablet-or-smaller() {
flex-direction: column;
}
`
export { HeaderWrapper, ShippingCardWrapper, Address, Edit }