From 768118fda3e780ccc9bf9dbe38f9cf9687bd58e0 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Thu, 5 May 2016 11:24:14 +0900 Subject: [PATCH] Fix line wrapping --- common/css/rhymix.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/css/rhymix.scss b/common/css/rhymix.scss index 90db366aa..674786d9b 100644 --- a/common/css/rhymix.scss +++ b/common/css/rhymix.scss @@ -23,9 +23,11 @@ a img { font-family: $default_font_family; font-size: $default_font_size; line-height: $default_line_height; - word-break: $default_word_break; @if $default_word_break == 'none' { white-space: nowrap; + } @else { + word-break: $default_word_break; + word-wrap: break-word; } p { margin: 0 0 $default_paragraph_spacing 0;