import styled from 'styled-components/macro' import { devices } from 'config/devices' export const MainWrapper = styled.div` margin: 63px 16px 0 16px; @media ${devices.laptop} { margin: 0px 16px; } @media ${devices.tablet} { display: flex; flex-direction: column; margin: 0 0 16px 0; } ` export const Container = styled.div` max-width: 1504px; max-height: 896px; margin-top: 14px; display: flex; flex-direction: column; @media ${devices.tablet} { order: 1; margin-top: 0; } `