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

23 lines
431 B

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