gengitkan/client/src/sass/_kanboard.scss

54 lines
1.2 KiB
SCSS
Raw Normal View History

2019-12-01 22:12:13 +01:00
.kanboard-container {
& > div {
padding: 0;
height: 100%;
& > div {
width: 100%;
height: 100%;
display: flex;
2019-12-06 17:14:40 +01:00
flex-direction: row;
align-items: stretch;
justify-content: stretch;
2019-12-01 22:12:13 +01:00
// Lanes
& > div {
&:first-child {
margin-left: 0;
}
flex-grow: 1;
flex-basis: 100%;
background-color: transparent;
2019-12-06 17:14:40 +01:00
display: flex;
flex-direction: column;
bottom: 0;
height: 100% !important;
min-height: 100% !important;
2019-12-01 22:12:13 +01:00
// Card container
& > div > div > div {
width: 100%;
}
}
}
}
[data-react-beautiful-dnd-droppable] {
2019-12-06 17:14:40 +01:00
min-height: calc(100vh) !important;
2019-12-01 22:12:13 +01:00
}
.kanboard-card {
margin-bottom: $size-small;
}
2019-12-05 22:37:09 +01:00
.kanboard-lane {
2019-12-01 22:12:13 +01:00
margin-bottom: $size-small;
}
2019-12-05 22:37:09 +01:00
}
.modal-content {
justify-content: center;
align-items: center;
width: 50% !important;
2019-12-01 22:12:13 +01:00
}