|
|
|
|
@ -32,7 +32,7 @@ export const Controls = styled.div` |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
bottom: 0; |
|
|
|
|
bottom: 5px; |
|
|
|
|
@media (orientation: landscape){ |
|
|
|
|
width: 100%; |
|
|
|
|
left: 50%; |
|
|
|
|
@ -81,6 +81,7 @@ export const ControlsGroup = styled.div` |
|
|
|
|
? css` |
|
|
|
|
:last-child { |
|
|
|
|
margin-left: auto; |
|
|
|
|
margin-right: 10px; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
@ -230,10 +231,9 @@ export const Backward = styled(ButtonBase)<ButtonProps>` |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
width: 20%; |
|
|
|
|
height: 40%; |
|
|
|
|
width: 15%; |
|
|
|
|
font-size: 14px; |
|
|
|
|
margin-right: 0; |
|
|
|
|
margin-right: 6px; |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
@ -255,7 +255,8 @@ export const PlaybackTime = styled.span<PlaybackTimeProps>` |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
font-size: 10px; |
|
|
|
|
width: 130px; |
|
|
|
|
width: 100px; |
|
|
|
|
white-space: nowrap; |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
@ -295,4 +296,12 @@ export const LiveBtn = styled(ButtonBase)` |
|
|
|
|
padding: 4.5px 8px; |
|
|
|
|
background-color: #CC0000; |
|
|
|
|
border-radius: 1.3px; |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
@media (max-width: 650px){ |
|
|
|
|
margin-right: 7px; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
: ''}; |
|
|
|
|
` |
|
|
|
|
|