From 908ee05a23178d939fadae51e5cbc57881115c05 Mon Sep 17 00:00:00 2001 From: Oleksii Kriuchykhin Date: Mon, 26 Sep 2016 15:50:09 +0200 Subject: [PATCH] Fix issue with words break in task description and comments [SCI-477] --- app/assets/stylesheets/my_modules.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/assets/stylesheets/my_modules.scss b/app/assets/stylesheets/my_modules.scss index 22e9b67a1..6b49e5c7b 100644 --- a/app/assets/stylesheets/my_modules.scss +++ b/app/assets/stylesheets/my_modules.scss @@ -16,3 +16,13 @@ margin-left: 0; margin-right: 0; } + +.description-label { + word-break: break-all; + word-wrap: break-word; +} + +.comment { + word-break: break-all; + word-wrap: break-word; +}