From 10151db2295110f71cc00605f6e8ca5dc9f13357 Mon Sep 17 00:00:00 2001 From: William Petit Date: Fri, 6 Dec 2019 17:14:40 +0100 Subject: [PATCH] Fix card move in Firefox --- client/src/sass/_kanboard.scss | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/client/src/sass/_kanboard.scss b/client/src/sass/_kanboard.scss index 94720dc..a14e555 100644 --- a/client/src/sass/_kanboard.scss +++ b/client/src/sass/_kanboard.scss @@ -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 {