From abc0777412f2cafa36c238b7a945762e9fe251e6 Mon Sep 17 00:00:00 2001 From: Vinicius Date: Thu, 12 Jul 2018 17:10:23 -0300 Subject: [PATCH] Add word-break: break-word to .sortable-tasks class to prevent links and words to get out of the task box (#10495) --- website/client/components/tasks/column.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/client/components/tasks/column.vue b/website/client/components/tasks/column.vue index e97f1899ce..02693cbac3 100644 --- a/website/client/components/tasks/column.vue +++ b/website/client/components/tasks/column.vue @@ -81,6 +81,10 @@ min-height: 556px; } + .sortable-tasks { + word-break: break-word; + } + .sortable-tasks + .reward-items { margin-top: 16px; }