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/MatchesGrid/styled.tsx

17 lines
363 B

import styled, { css } from 'styled-components/macro'
import { isMobileDevice } from 'config/userAgent'
export const Wrapper = styled.ul`
display: grid;
grid-gap: 0.9rem;
grid-template-columns: repeat(6, 15.7%);
${isMobileDevice
? css`
display: flex;
flex-wrap: wrap;
grid-template-columns: none;
grid-gap: 0;
`
: ''};
`