From 59e9b3d1d0fd6ea14cb3b71bc99327fb88b1d25c Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 20 Dec 2019 12:11:54 +0100 Subject: [PATCH] Only round the real avatars Before this all images were rounded, including the icons of contacts menu options Signed-off-by: Joas Schilling --- core/css/styles.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/styles.scss b/core/css/styles.scss index 1ff81a17cbf55..7c6b7f8ad5917 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -407,7 +407,7 @@ body { .avatar, .avatardiv { border-radius: 50%; flex-shrink: 0; - img { + &> img { border-radius: 50%; flex-shrink: 0; }