|
|
|
|
@ -1,5 +1,7 @@ |
|
|
|
|
import styled from 'styled-components/macro' |
|
|
|
|
|
|
|
|
|
import { devices } from 'config/devices' |
|
|
|
|
|
|
|
|
|
export const Wrapper = styled.div` |
|
|
|
|
display: flex; |
|
|
|
|
font-weight: bold; |
|
|
|
|
@ -7,10 +9,18 @@ export const Wrapper = styled.div` |
|
|
|
|
line-height: 24px; |
|
|
|
|
color: white; |
|
|
|
|
min-height: 28px; |
|
|
|
|
|
|
|
|
|
@media${devices.tablet} { |
|
|
|
|
order: 2; |
|
|
|
|
font-size: 16px; |
|
|
|
|
padding: 15px 20px 0 20px; |
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const Teams = styled.div` |
|
|
|
|
display: flex; |
|
|
|
|
|
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const Dash = styled.span` |
|
|
|
|
@ -20,11 +30,22 @@ export const Dash = styled.span` |
|
|
|
|
margin: 0 15px; |
|
|
|
|
height: fit-content; |
|
|
|
|
align-self: center; |
|
|
|
|
|
|
|
|
|
@media${devices.tablet} { |
|
|
|
|
width: 16px; |
|
|
|
|
border-bottom: 1px solid white; |
|
|
|
|
margin: 0 4px; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const Score = styled.div` |
|
|
|
|
display: flex; |
|
|
|
|
margin-left: 48px; |
|
|
|
|
|
|
|
|
|
@media${devices.tablet} { |
|
|
|
|
margin-left: 8px; |
|
|
|
|
color: #EACB6F; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const Tournament = styled.div` |
|
|
|
|
@ -35,4 +56,11 @@ export const Tournament = styled.div` |
|
|
|
|
align-self: flex-end; |
|
|
|
|
margin-left: 48px; |
|
|
|
|
color: #666666; |
|
|
|
|
|
|
|
|
|
@media${devices.tablet} { |
|
|
|
|
width: 100%; |
|
|
|
|
margin-left: 0; |
|
|
|
|
margin-top: 4px; |
|
|
|
|
font-size: 11px; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
|