mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
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
1 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue