From 1b295a88e5c7ab9da5d94b6a2caac7acebd1e61d Mon Sep 17 00:00:00 2001 From: arlogn Date: Sun, 1 Sep 2013 01:41:37 +0200 Subject: [PATCH] Prevent overflow of strings too long on single page view --- app/assets/stylesheets/single-post-view.css.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/assets/stylesheets/single-post-view.css.scss b/app/assets/stylesheets/single-post-view.css.scss index bdf501f07..3f4d97bf7 100644 --- a/app/assets/stylesheets/single-post-view.css.scss +++ b/app/assets/stylesheets/single-post-view.css.scss @@ -63,6 +63,7 @@ width: auto; p { margin: 0 0 1em 0; + word-wrap: break-word; } .photo_attachments { padding-bottom: 10px; @@ -103,6 +104,7 @@ padding-bottom: 10px; p { margin: 0 0 1em 0; + word-wrap: break-word; &:last-child { margin-bottom: 0; }