Fixed overflow issues on forum category listing.
This commit is contained in:
parent
f630d3d91b
commit
d5ba3b7fd8
2 changed files with 12 additions and 0 deletions
|
@ -14,5 +14,6 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 5px;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -170,6 +170,10 @@
|
|||
color: var(--accent-colour);
|
||||
text-decoration: none;
|
||||
pointer-events: initial;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 200px;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
|
@ -178,6 +182,13 @@
|
|||
@media (max-width: @site-mobile-width) {
|
||||
flex: 1 1 auto;
|
||||
text-align: left;
|
||||
max-width: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
&__info {
|
||||
@media (max-width: @site-mobile-width) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue