Apply rounding to avatars in My Notes

Resolves #573
This commit is contained in:
Ilya Prokopenko 2022-07-05 22:08:55 +07:00
parent a4733f9593
commit 240cc73102
No known key found for this signature in database
GPG key ID: 3EE235B32BF277D9
2 changed files with 13 additions and 0 deletions

View file

@ -40,3 +40,9 @@ div.content > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth
height: 30px !important;
object-fit: cover;
}
.profile_thumb > a > img {
width: 50px;
height: 50px;
object-fit: cover;
}

View file

@ -67,3 +67,10 @@ div.ovk-video > div > img
height: 30px !important;
object-fit: cover;
}
.profile_thumb > a > img {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 100px;
}