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.
This commit is contained in:
Kyle Zhao 2017-08-17 02:52:50 -04:00 committed by Régis Hanol
parent 8f795b35bb
commit 43e2c91845
1 changed files with 5 additions and 0 deletions

View File

@ -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 {