You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
733 B
41 lines
733 B
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: 85%;
|
|
max-height: 896px;
|
|
margin-top: 14px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
@media ${devices.laptop} {
|
|
max-width: 80%;
|
|
}
|
|
|
|
@media ${devices.tablet} {
|
|
order: 1;
|
|
margin-top: 0;
|
|
}
|
|
@media ${devices.mobile} {
|
|
max-width: 100%;
|
|
}
|
|
`
|
|
export const EmptyScrollTarget = styled.div`
|
|
@media ${devices.tablet} {
|
|
display: none;
|
|
}
|
|
`
|
|
|