@@ -38,12 +38,10 @@ export const Section = styled.section`
3838 margin: 5px 5px;
3939 position: relative;
4040 padding: 10px;
41- min-width: 250px;
42- display: flex;
41+ display: inline-flex;
4342 height: auto;
4443 max-height: 90%;
4544 flex-direction: column;
46- display: flex;
4745`
4846
4947export const LaneHeader = styled ( Header ) `
@@ -55,7 +53,9 @@ export const LaneHeader = styled(Header)`
5553export const ScrollableLane = styled . div `
5654 flex: 1;
5755 overflow-y: auto;
56+ min-width: 250px;
5857 overflow-x: hidden;
58+ display: inline-flex;
5959 height: 100%;
6060 padding-bottom: ${ props => ( props . isDraggingOver ? '130px' : '30px' ) } ;
6161 margin-top: 10px;
@@ -66,16 +66,16 @@ export const Title = styled.span`
6666 font-size: 15px;
6767 line-height: 18px;
6868 cursor: grab;
69- width: 100 %;
69+ width: 70 %;
7070`
7171
7272export const RightContent = styled . span `
7373 width: 30%;
7474 text-align: right;
75+ padding-right: 5px;
7576 font-size: 13px;
7677`
7778
78- export const DraggableList = styled . div ``
7979
8080export const CardWrapper = styled . article `
8181 border-radius: 3px;
@@ -96,16 +96,6 @@ export const MovableCardWrapper = styled(CardWrapper)`
9696 }
9797`
9898
99- export const Placeholder = styled . section `
100- background-color: #ccc;
101- margin: 5px 0;
102- padding: 10px;
103- min-width: 226px;
104- height: 45px;
105- max-height: 95%;
106- overflow-y: auto;
107- `
108-
10999export const CardHeader = styled ( Header ) `
110100 border-bottom: 1px solid #eee;
111101 padding-bottom: 6px;
@@ -157,12 +147,3 @@ export const AddCardLink = styled.a`
157147 text-decoration: underline;
158148 }
159149`
160-
161- export const LaneWrapper = styled . div `
162- background-color: ${ ( { isDraggingOver} ) => ( isDraggingOver ? 'cyan' : 'white' ) } ;
163- display: flex;
164- flex-direction: column;
165- opacity: ${ ( { isDropDisabled} ) => ( isDropDisabled ? 0.5 : 'inherit' ) } ;
166- transition: background-color 0.1s ease, opacity 0.1s ease;
167- user-select: none;
168- `
0 commit comments