merge: border radius fix and pointer on pencil icon (#146)

This commit is contained in:
Marie 2023-11-07 20:06:04 +01:00 committed by GitHub
commit a1c325a66d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 10 additions and 10 deletions

View file

@ -159,7 +159,7 @@ watch(() => props.user.avatarBlurhash, () => {
display: inline-block;
vertical-align: bottom;
flex-shrink: 0;
border-radius: 100%;
border-radius: 100%; // sharkey: controlled by square avatars setting!
line-height: 16px;
}
@ -169,7 +169,7 @@ watch(() => props.user.avatarBlurhash, () => {
left: 0;
right: 0;
top: 0;
border-radius: 100%;
border-radius: 100%; // sharkey: controlled by square avatars setting!
z-index: 1;
overflow: clip;
object-fit: cover;
@ -187,10 +187,10 @@ watch(() => props.user.avatarBlurhash, () => {
}
.square {
border-radius: 20%;
border-radius: 20%; // sharkey: controlled by square avatars setting!
> .inner {
border-radius: 20%;
border-radius: 20%; // sharkey: controlled by square avatars setting!
}
}