40 lines
778 B
SCSS
40 lines
778 B
SCSS
|
|
.kanboard-container {
|
|
& > div {
|
|
padding: 0;
|
|
height: 100%;
|
|
|
|
& > div {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
|
|
// Lanes
|
|
& > div {
|
|
&:first-child {
|
|
margin-left: 0;
|
|
}
|
|
flex-grow: 1;
|
|
flex-basis: 100%;
|
|
background-color: transparent;
|
|
|
|
// Card container
|
|
& > div > div > div {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
[data-react-beautiful-dnd-droppable] {
|
|
height: 100%;
|
|
}
|
|
|
|
.kanboard-card {
|
|
margin-bottom: $size-small;
|
|
}
|
|
|
|
.kanboard-lane-title {
|
|
margin-bottom: $size-small;
|
|
}
|
|
} |