From c91b599b996d3ac44e6b9d4e6ee26b5f0e4e18a2 Mon Sep 17 00:00:00 2001 From: SchnozzleCat Date: Fri, 17 Apr 2026 01:43:46 +0200 Subject: [PATCH] fix: modal overflow --- src/components/BoemlyModal/BoemlyModal.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/BoemlyModal/BoemlyModal.tsx b/src/components/BoemlyModal/BoemlyModal.tsx index b196d92..5dd8237 100644 --- a/src/components/BoemlyModal/BoemlyModal.tsx +++ b/src/components/BoemlyModal/BoemlyModal.tsx @@ -69,15 +69,15 @@ export const BoemlyModal: React.FC = ({ content: { marginInlineStart: 'auto', marginInlineEnd: '0' }, }, left: { - positioner: { justifyContent: 'flex-start', alignItems: 'center' }, + positioner: { justifyContent: 'flex-start', alignItems: 'safe center' }, content: { marginInlineStart: '0', marginInlineEnd: 'auto' }, }, center: { - positioner: { justifyContent: 'center', alignItems: 'center' }, + positioner: { justifyContent: 'center', alignItems: 'safe center' }, content: { marginInlineStart: 'auto', marginInlineEnd: 'auto' }, }, right: { - positioner: { justifyContent: 'flex-end', alignItems: 'center' }, + positioner: { justifyContent: 'flex-end', alignItems: 'safe center' }, content: { marginInlineStart: 'auto', marginInlineEnd: '0' }, }, bottomLeft: {