From 43e2c91845cbbe8490a7d0914a0143b0b95ccff6 Mon Sep 17 00:00:00 2001 From: Kyle Zhao Date: Thu, 17 Aug 2017 02:52:50 -0400 Subject: [PATCH] fixes word wrap issue on user activity page (#5056) By default, the width of a table and its cells are adjusted to fit the content. Thus, longer words are not wrapped and lead to a wider width. --- app/assets/stylesheets/desktop/user.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/assets/stylesheets/desktop/user.scss b/app/assets/stylesheets/desktop/user.scss index 07d645809f1..b5113638e24 100644 --- a/app/assets/stylesheets/desktop/user.scss +++ b/app/assets/stylesheets/desktop/user.scss @@ -92,6 +92,11 @@ .user-table { margin-top: 30px; width: 100%; + display: table; + table-layout: fixed; + .wrapper { + display: table-row; + } } .user-navigation .nav-stacked .glyph {