From ca044164ac9e159300670a13f13bb3362e97f87a Mon Sep 17 00:00:00 2001 From: IanM Date: Sun, 2 Nov 2025 11:27:33 +0000 Subject: [PATCH] fix: prevent avatar editor overlay stretching --- framework/core/less/forum/AvatarEditor.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/framework/core/less/forum/AvatarEditor.less b/framework/core/less/forum/AvatarEditor.less index f038bd70e7..67db8dc477 100644 --- a/framework/core/less/forum/AvatarEditor.less +++ b/framework/core/less/forum/AvatarEditor.less @@ -1,6 +1,10 @@ .AvatarEditor { position: relative; + // prevent flex stretching and make the box the same size as the img + display: inline-block; + align-self: flex-start; + .Dropdown-toggle { margin: 4px; font-size: 26px;