Merge pull request 'static-fe: don’t squeeze non-square images' (#705) from Oneric/akkoma:staticfe-nonsquare-img into develop

Reviewed-on: AkkomaGang/akkoma#705
This commit is contained in:
floatingghost 2024-04-11 18:43:03 +00:00
commit 090a77d1af
1 changed files with 4 additions and 2 deletions

View File

@ -117,6 +117,7 @@ nav {
.inner-nav img { .inner-nav img {
height: 28px; height: 28px;
width: auto;
vertical-align: middle; vertical-align: middle;
padding-right: 5px padding-right: 5px
} }
@ -440,6 +441,7 @@ summary {
.avatar img { .avatar img {
border-radius: 3px; border-radius: 3px;
box-shadow: var(--avatarShadow); box-shadow: var(--avatarShadow);
object-fit: cover;
} }
.user-summary { .user-summary {
@ -642,13 +644,13 @@ summary {
} }
img:not(.u-photo, .fa-icon) { img:not(.u-photo, .fa-icon) {
width: 32px; width: auto;
height: 32px; height: 32px;
padding: 0; padding: 0;
vertical-align: middle; vertical-align: middle;
} }
.username img:not(.u-photo) { .username img:not(.u-photo) {
width: 16px; width: auto;
height: 16px; height: 16px;
} }