@graf @sjw@bae.st @alex @husky it does not look great on mastodont tho...
Apparently mastodont makes the whole image fit into 1:1; aspect ratio be damned!
@sjw@bae.st @sjw @alex @graf @husky How big are they?
@sjw @graf @sjw @alex @husky it’s funny how this is actually pretty easy with CSS
make a div and set the background to pfp, then size:
<style> div.pfp { width: 32px; height: 32px; background-image: url("/upload/asdfjlkaeuoijvbpcvkbpovjnoihxiucy.jpg"); background-size: cover; } </style> <div class="pfp"></div>
Here’s some custom CSS to fix in pleroma:
.avatar-compact img { object-fit: cover !important; }
:cornbread_the_cat::cornbread_going_goblin_mode: