File size: 404 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import styled from '@emotion/styled';
export const PaymentMethodLogos = styled.span`
display: flex;
flex: 1;
flex-wrap: wrap;
gap: 5px;
text-align: end;
align-items: center;
justify-content: flex-start;
&.credit-card__logos svg {
display: inline-block;
height: 26px;
width: 42px;
}
@media ( ${ ( props ) => props.theme.breakpoints.smallPhoneUp } ) {
justify-content: flex-end;
}
`;
|