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.
 
 
 
 
spa_instat_tv/src/features/MatchPage/styled.tsx

29 lines
529 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: 1504px;
max-height: 896px;
margin-top: 14px;
display: flex;
flex-direction: column;
@media ${devices.tablet} {
order: 1;
margin-top: 0;
}
`