From c1b95ab0259326597106da4b825d0e5267ceadbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Sat, 2 Dec 2023 13:36:30 +0100 Subject: [PATCH] fix(files_sharing): fix sharing status indicator side after component update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Seems like the components now have max-height/width set too Signed-off-by: John Molakvoæ --- apps/files_sharing/src/actions/sharingStatusAction.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/src/actions/sharingStatusAction.scss b/apps/files_sharing/src/actions/sharingStatusAction.scss index fd37732d47c..99fc8c88ad2 100644 --- a/apps/files_sharing/src/actions/sharingStatusAction.scss +++ b/apps/files_sharing/src/actions/sharingStatusAction.scss @@ -30,6 +30,8 @@ svg.sharing-status__avatar { height: 32px !important; width: 32px !important; + max-height: 32px !important; + max-width: 32px !important; border-radius: 32px; overflow: hidden; -} \ No newline at end of file +}