|
|
|
|
@ -6,8 +6,6 @@ import { isMobileDevice } from 'config/userAgent' |
|
|
|
|
import { customScrollbar } from 'features/Common' |
|
|
|
|
|
|
|
|
|
export const Wrapper = styled.div` |
|
|
|
|
min-width: 17%; |
|
|
|
|
max-height: 896px; |
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
overflow-y: auto; |
|
|
|
|
@ -21,7 +19,6 @@ export const Wrapper = styled.div` |
|
|
|
|
export const TabsWrapper = styled.div` |
|
|
|
|
padding-left: 14px; |
|
|
|
|
padding-right: 18px; |
|
|
|
|
height: 4%; |
|
|
|
|
|
|
|
|
|
${isMobileDevice |
|
|
|
|
? css` |
|
|
|
|
@ -35,10 +32,11 @@ type TContainer = { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export const Container = styled.div<TContainer>` |
|
|
|
|
padding: 14px 10px 0 14px; |
|
|
|
|
height: 96%; |
|
|
|
|
width: 320px; |
|
|
|
|
margin-top: 14px; |
|
|
|
|
padding: 0 10px 0 14px; |
|
|
|
|
max-height: calc(100vh - 130px); |
|
|
|
|
overflow: ${({ forVideoTab }) => (forVideoTab ? 'hidden' : 'auto')}; |
|
|
|
|
overflow-y: ${({ forVideoTab }) => (forVideoTab ? 'hidden' : 'auto')}; |
|
|
|
|
|
|
|
|
|
${customScrollbar} |
|
|
|
|
|
|
|
|
|
|