Just used Stylus to hide followers/following on all profiles in the Web UI on Mastodon.
.account__header__extra__links > a:not(:first-child) {
display: none;
}
What it does:
You can also hide the “Follows you” tag:
.relationship-tag {
display: none;
}
My mind rests a little easy now while browsing around. 🙂
1