From ec76b9dc5c9027f06a98d83e8f01e73b857505b0 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 29 Nov 2025 18:01:07 +0200 Subject: [PATCH] chore(quick-edit): increase max-width on mobile --- apps/client/src/widgets/dialogs/PopupEditor.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/dialogs/PopupEditor.css b/apps/client/src/widgets/dialogs/PopupEditor.css index 952e35dc5..80e8b3e70 100644 --- a/apps/client/src/widgets/dialogs/PopupEditor.css +++ b/apps/client/src/widgets/dialogs/PopupEditor.css @@ -14,7 +14,7 @@ body.desktop .modal.popup-editor-dialog .modal-dialog { } body.mobile .modal.popup-editor-dialog .modal-dialog { - max-width: 90vw; + max-width: min(var(--preferred-max-content-width), 95vw); max-height: var(--tn-modal-max-height); height: 100%; }