|
|
|
|
@ -57,7 +57,8 @@ export const TabsGroup = styled.div.attrs({ role: 'tablist' })<TabsGroupProps>` |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const TabTitle = styled(T9n)` |
|
|
|
|
font-size: 8px; |
|
|
|
|
font-size: 10px; |
|
|
|
|
font-weight: 500; |
|
|
|
|
text-transform: uppercase; |
|
|
|
|
color: ${({ theme }) => theme.colors.white}; |
|
|
|
|
` |
|
|
|
|
@ -77,7 +78,6 @@ export const Tab = styled.button.attrs({ role: 'tab' })` |
|
|
|
|
opacity: 1; |
|
|
|
|
|
|
|
|
|
${TabTitle} { |
|
|
|
|
font-size: 9px; |
|
|
|
|
font-weight: 600; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@ -88,8 +88,8 @@ type TabIconProps = { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export const TabIcon = styled.div<TabIconProps>` |
|
|
|
|
width: 20px; |
|
|
|
|
height: 20px; |
|
|
|
|
width: 22px; |
|
|
|
|
height: 22px; |
|
|
|
|
background-image: url(/images/matchTabs/${({ icon }) => `${icon}.svg`}); |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
background-position: center; |
|
|
|
|
@ -109,7 +109,7 @@ type TContainer = { |
|
|
|
|
|
|
|
|
|
export const Container = styled.div<TContainer>` |
|
|
|
|
width: 320px; |
|
|
|
|
margin-top: 23px; |
|
|
|
|
margin-top: 14px; |
|
|
|
|
max-height: calc(100vh - 130px); |
|
|
|
|
overflow-y: ${({ forWatchTab }) => (forWatchTab ? 'hidden' : 'auto')}; |
|
|
|
|
padding-right: ${({ forWatchTab }) => (forWatchTab ? '0' : '')}; |
|
|
|
|
@ -118,7 +118,6 @@ export const Container = styled.div<TContainer>` |
|
|
|
|
|
|
|
|
|
${customScrollbar} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media ${devices.tablet} { |
|
|
|
|
margin-top: 15px; |
|
|
|
|
} |
|
|
|
|
|