Prevent topic title length from squishing Category description

Hello!

How can I prevent the topic title from squishing the category description (if long enough) when using “categories with featured topics”?

UPDATE:

Using this recent topic (thank you @Arkshine), I was able to solve the problem with the following code:

.category-list .featured-topic .title {
    max-width: 30em;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

And now it all looks good:

2 Likes