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:
parent
8f795b35bb
commit
43e2c91845
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue