From 83090278805514a1d5402b5d4213788d870c3035 Mon Sep 17 00:00:00 2001
From: Daniel Libonati
Date: Mon, 23 Sep 2019 14:59:53 -0300
Subject: [PATCH] Prevent project kanban boxes from having line breaks
---
project_ux/static/src/less/kanban_dashboard.less | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/project_ux/static/src/less/kanban_dashboard.less b/project_ux/static/src/less/kanban_dashboard.less
index ed26e34b..3467c10f 100644
--- a/project_ux/static/src/less/kanban_dashboard.less
+++ b/project_ux/static/src/less/kanban_dashboard.less
@@ -1,5 +1,5 @@
.o_project_kanban_box {
- &:nth-child(2){
- width: 33.33% !important;
- }
+ width: fit-content;
+ margin: 0px 5px;
+ white-space: nowrap;
}