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