Fix card move in Firefox
This commit is contained in:
parent
bdd5ce7ebe
commit
10151db229
|
@ -8,6 +8,9 @@
|
|||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: stretch;
|
||||
justify-content: stretch;
|
||||
|
||||
// Lanes
|
||||
& > div {
|
||||
|
@ -17,6 +20,11 @@
|
|||
flex-grow: 1;
|
||||
flex-basis: 100%;
|
||||
background-color: transparent;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
bottom: 0;
|
||||
height: 100% !important;
|
||||
min-height: 100% !important;
|
||||
|
||||
// Card container
|
||||
& > div > div > div {
|
||||
|
@ -27,7 +35,8 @@
|
|||
}
|
||||
|
||||
[data-react-beautiful-dnd-droppable] {
|
||||
height: 100%;
|
||||
height: calc(100vh) !important;
|
||||
min-height: calc(100vh) !important;
|
||||
}
|
||||
|
||||
.kanboard-card {
|
||||
|
|
Loading…
Reference in New Issue