|
|
|
|
@ -43,6 +43,7 @@ export const CardWrapper = styled.li.attrs({ |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const PreviewWrapper = styled.div` |
|
|
|
|
position: relative; |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column-reverse; |
|
|
|
|
height: 147px; |
|
|
|
|
@ -70,10 +71,13 @@ export const MatchDate = styled.div` |
|
|
|
|
font-weight: bold; |
|
|
|
|
text-transform: uppercase; |
|
|
|
|
letter-spacing: 0.1em; |
|
|
|
|
text-align: center; |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
justify-content: center; |
|
|
|
|
white-space: nowrap; |
|
|
|
|
color: white; |
|
|
|
|
background: #6D6D6D; |
|
|
|
|
background-color: #6D6D6D; |
|
|
|
|
z-index: 1; |
|
|
|
|
|
|
|
|
|
@media ${devices.tablet} { |
|
|
|
|
top: 10px; |
|
|
|
|
@ -82,6 +86,7 @@ export const MatchDate = styled.div` |
|
|
|
|
padding: 6px 8px; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const Time = styled.span` |
|
|
|
|
margin-left: 10px; |
|
|
|
|
` |
|
|
|
|
@ -205,6 +210,7 @@ export const TeamLogos = styled.div` |
|
|
|
|
padding-right: 20px; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const TeamLogo = styled(ProfileLogo)` |
|
|
|
|
width: 60px; |
|
|
|
|
|
|
|
|
|
@ -216,3 +222,25 @@ export const TeamLogo = styled(ProfileLogo)` |
|
|
|
|
width: 134px; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const BuyMatchButton = styled.button` |
|
|
|
|
border: none; |
|
|
|
|
background: none; |
|
|
|
|
padding: 0; |
|
|
|
|
|
|
|
|
|
position: absolute; |
|
|
|
|
right: 12px; |
|
|
|
|
bottom: 12px; |
|
|
|
|
width: 40px; |
|
|
|
|
height: 40px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
z-index: 1; |
|
|
|
|
|
|
|
|
|
background-image: url(/images/dollar-sign.svg); |
|
|
|
|
background-position: center; |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
background-color: #fff; |
|
|
|
|
border-radius: 50%; |
|
|
|
|
border: 0.5px solid rgba(0, 0, 0, 0.2); |
|
|
|
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5); |
|
|
|
|
` |
|
|
|
|
|