Title not shown on mobile when the topic has many tags

Our community has recently noticed that the title of a topic is off the screen when the topic has many tags (~20 tags):

Many thanks!

1 Like

I am able to temporary fix it by changing the default display: inline-flex to display:block for .discourse-tags . Not sure if it’s an intentional change in Discourse’s recent update.

.extra-info-wrapper .title-wrapper .topic-header-extra .discourse-tags{
    display:block;
}

I’ve added a fix for this, there’s some more detail here:

1 Like