|
|
|
|
@ -12,6 +12,9 @@ export const SelectedAudioTrack = styled(ButtonBase)` |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: rgba(255, 255, 255, 0.7); |
|
|
|
|
font-weight: 600; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
|
|
${isMobileDevice ? css` |
|
|
|
|
width: 80px; |
|
|
|
|
@ -95,3 +98,16 @@ export const ScHeader = styled.div` |
|
|
|
|
font-weight: 700; |
|
|
|
|
text-transform: uppercase; |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const IconArrow = styled.div<{ active: boolean}>` |
|
|
|
|
width: 13px; |
|
|
|
|
height: 13px; |
|
|
|
|
margin-left: 5px; |
|
|
|
|
background: url(/images/boldArrowWhite.svg) no-repeat; |
|
|
|
|
background-size: contain; |
|
|
|
|
background-position: center; |
|
|
|
|
|
|
|
|
|
${({ active }) => (active ? css` |
|
|
|
|
transform: rotate(180deg); |
|
|
|
|
` : '')}
|
|
|
|
|
` |
|
|
|
|
|