MichaelBelgium
Thanks for your work man. I had mobile alignment fixed via CSS before, with the eyeball icon present. Yours does fix the mobile alignment naturally, but I lose the eyeball icon. Not the end of the world, but the icon is helpful. I know it's a PIA.

This was the working CSS that I had is here, if it helps. Thanks again for your efforts.
// Discussion Views - Mobile Discussion List
@media (max-width: 767px) {
.DiscussionListItem-main {
padding-right: 5px;
}
.DiscussionListItem-main .item-discussion-views {
position: absolute;
right: 80px;
top: 37px;
}
.DiscussionListItem-count:before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
font-family: 'Font Awesome 5 Free';
font-weight: 400;
content: "\f075";
margin-right: 5px;
}
}