From aac49180966706ca96596faa68e0127199233b6a Mon Sep 17 00:00:00 2001
From: Adrien Dieudonne <adr@odoo.com>
Date: Wed, 11 Oct 2017 11:24:22 +0200
Subject: [PATCH] [FIX] web: kanban mobile horizontal scroll issue

In mobile, the .o_kanban_card_content width wasn't defined.
In desktop, we don't have this issue because the .container bootstrap
element set the width.

Now, the kanban card content is correctly displayed in
the workcenter kanban view.
---
 addons/web/static/src/less/kanban_dashboard.less | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/addons/web/static/src/less/kanban_dashboard.less b/addons/web/static/src/less/kanban_dashboard.less
index 6fb2999a7657..41b325a8ef38 100644
--- a/addons/web/static/src/less/kanban_dashboard.less
+++ b/addons/web/static/src/less/kanban_dashboard.less
@@ -45,7 +45,7 @@
 
         // ------- Generic layout adaptations -------
         .container {
-            max-width: 100%;
+            width: 100%;
         }
 
         // ------- Dropdown toggle & menu -------
-- 
GitLab