Fixed overflow issues on forum category listing.

This commit is contained in:
flash 2018-10-15 16:04:01 +02:00
parent f630d3d91b
commit d5ba3b7fd8
2 changed files with 12 additions and 0 deletions

View file

@ -14,5 +14,6 @@
display: flex;
flex-direction: column;
margin: 5px;
overflow: hidden;
}
}

View file

@ -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%;
}
}
}