Scale user photo upload with font size

This commit is contained in:
Jorik Schellekens
2020-04-23 10:45:47 +01:00
parent 7a0caafb77
commit 83609f0ab2
2 changed files with 5 additions and 4 deletions
+4 -4
View File
@@ -15,13 +15,13 @@ limitations under the License.
*/
.mx_AvatarSetting_avatar {
width: 88px;
height: 88px;
width: $font-88px;
height: $font-88px;
margin-left: 13px;
position: relative;
& > * {
width: 88px;
width: $font-88px;
box-sizing: border-box;
}
@@ -63,7 +63,7 @@ limitations under the License.
& > img,
.mx_AvatarSetting_avatarPlaceholder {
display: block;
height: 88px;
height: $font-88px;
border-radius: 4px;
}