Files
taskcafe/frontend/src/shared/components/Lists/Styles.ts
2020-09-02 20:27:43 -05:00

46 lines
778 B
TypeScript

import styled from 'styled-components';
export const Container = styled.div`
flex: 1;
user-select: none;
white-space: nowrap;
overflow-x: auto;
overflow-y: hidden;
::-webkit-scrollbar {
height: 10px;
}
::-webkit-scrollbar-thumb {
background: #7367f0;
border-radius: 6px;
}
::-webkit-scrollbar-track {
background: #10163a;
border-radius: 6px;
}
`;
export const BoardContainer = styled.div`
position: relative;
overflow-y: auto;
outline: none;
flex-grow: 1;
`;
export const BoardWrapper = styled.div`
display: flex;
user-select: none;
white-space: nowrap;
overflow-x: auto;
overflow-y: hidden;
padding-bottom: 4px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
`;
export default Container;