import styled, { css } from 'styled-components'; export const OrderProductsListWrapper = styled.div<{ isZoomIn: boolean }>` min-width: 340px; transition: 0.3s; padding-bottom: 10px; & > div:not(:first-child) { margin-top: 10px; } ${({ isZoomIn }) => isZoomIn && css` min-height: 64.8vh; `} `;