|
|
|
|
@ -12,9 +12,8 @@ export const StyledLink = styled(Link)` |
|
|
|
|
border: none; |
|
|
|
|
cursor: pointer; |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: row; |
|
|
|
|
flex-direction: column; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
width: 100%; |
|
|
|
|
height: 100%; |
|
|
|
|
@ -26,21 +25,31 @@ export const StyledLink = styled(Link)` |
|
|
|
|
), |
|
|
|
|
#3F3F3F; |
|
|
|
|
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3); |
|
|
|
|
border-radius: 2px; |
|
|
|
|
|
|
|
|
|
:hover { |
|
|
|
|
background-color: #555555; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
flex-direction: row; |
|
|
|
|
justify-content: center; |
|
|
|
|
border-radius: 0; |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const Title = styled.span` |
|
|
|
|
font-weight: 700; |
|
|
|
|
font-weight: 500; |
|
|
|
|
font-size: 0.95rem; |
|
|
|
|
line-height: 2.36rem; |
|
|
|
|
letter-spacing: 0.03em; |
|
|
|
|
color: #ffffff; |
|
|
|
|
text-transform: uppercase; |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
text-transform: uppercase; |
|
|
|
|
font-weight: 700; |
|
|
|
|
font-size: 10px; |
|
|
|
|
line-height: 12px; |
|
|
|
|
` |
|
|
|
|
@ -63,10 +72,12 @@ export const LiveSign = styled(MatchDate)` |
|
|
|
|
width: 1.511rem; |
|
|
|
|
height: 0.71rem; |
|
|
|
|
background-color: #CC0000; |
|
|
|
|
position: absolute; |
|
|
|
|
right: 0.8rem; |
|
|
|
|
top: 50%; |
|
|
|
|
font-size: 0.32rem; |
|
|
|
|
transform: translateY(-38%); |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-left: 5px; |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
@ -74,7 +85,9 @@ export const LiveSign = styled(MatchDate)` |
|
|
|
|
width: 32px; |
|
|
|
|
height: 22px; |
|
|
|
|
font-size: 10px; |
|
|
|
|
/* transform: translateY(-50%); */ |
|
|
|
|
align-items: center; |
|
|
|
|
margin-left: 5px; |
|
|
|
|
transform: none; |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
|