Hi @huseyinfiliz I think this might be useful to you. Sometimes on PCs, particularly long titles can cause the navigation bar between messages to shift.
To fix this, we can use this custom CSS to limit the number of lines displayed. You would need to edit the property -webkit-line-clamp: 3; for the number of lines, for example 2, 3 or 5. It might be interesting to include this as a future feature, but in the meantime, I think this CSS can help.
.PostStreamScrubber .Scrubber-first .ScrubberTitle {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
white-space: normal;
}