|
|
|
@ -15,14 +15,11 @@ export const PopupContainer = styled.div` |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
flex-direction: column; |
|
|
|
position: absolute; |
|
|
|
position: absolute; |
|
|
|
overflow-y: auto; |
|
|
|
|
|
|
|
z-index: 1000; |
|
|
|
z-index: 1000; |
|
|
|
height: 100%; |
|
|
|
height: 100%; |
|
|
|
right: 0; |
|
|
|
right: 0; |
|
|
|
top: 0; |
|
|
|
top: 0; |
|
|
|
|
|
|
|
|
|
|
|
${customScrollbar} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
${isMobileDevice |
|
|
|
? css` |
|
|
|
? css` |
|
|
|
position: fixed; |
|
|
|
position: fixed; |
|
|
|
@ -34,6 +31,13 @@ export const PopupContainer = styled.div` |
|
|
|
width: 651px;`}
|
|
|
|
width: 651px;`}
|
|
|
|
` |
|
|
|
` |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const PopupInner = styled.div` |
|
|
|
|
|
|
|
max-height: 100%; |
|
|
|
|
|
|
|
height: 100%; |
|
|
|
|
|
|
|
overflow-y: auto; |
|
|
|
|
|
|
|
${customScrollbar} |
|
|
|
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
|
|
export const PopupHeader = styled.div` |
|
|
|
export const PopupHeader = styled.div` |
|
|
|
flex: 0 0 auto; |
|
|
|
flex: 0 0 auto; |
|
|
|
${isMobileDevice |
|
|
|
${isMobileDevice |
|
|
|
@ -62,8 +66,8 @@ export const HeaderText = styled.div` |
|
|
|
font-style: normal; |
|
|
|
font-style: normal; |
|
|
|
font-weight: 700; |
|
|
|
font-weight: 700; |
|
|
|
text-transform: uppercase; |
|
|
|
text-transform: uppercase; |
|
|
|
|
|
|
|
color: #fff; |
|
|
|
|
|
|
|
|
|
|
|
color: #FFFFFF; |
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
${isMobileDevice |
|
|
|
? css` |
|
|
|
? css` |
|
|
|
font-size: 12px; |
|
|
|
font-size: 12px; |
|
|
|
@ -192,6 +196,9 @@ export const Button = styled.button` |
|
|
|
width: 167px;`}
|
|
|
|
width: 167px;`}
|
|
|
|
` |
|
|
|
` |
|
|
|
export const PlayerNumber = styled.span` |
|
|
|
export const PlayerNumber = styled.span` |
|
|
|
|
|
|
|
/* color: #ADADAD; */ |
|
|
|
|
|
|
|
color: rgba(255, 255, 255, 0.7); |
|
|
|
|
|
|
|
/* letter-spacing: -0.078px; */ |
|
|
|
margin-right: 8px; |
|
|
|
margin-right: 8px; |
|
|
|
font-size: 11px; |
|
|
|
font-size: 11px; |
|
|
|
line-height: 16px; |
|
|
|
line-height: 16px; |
|
|
|
|