From 416825c9c241d211dbd181a3f3b5efbd2a3c8306 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 25 Feb 2026 18:54:42 +0200 Subject: [PATCH] fix(mobile): toast not respecting safe area --- apps/client/src/widgets/Toast.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/Toast.css b/apps/client/src/widgets/Toast.css index ecc20c2056..b58e6a13ab 100644 --- a/apps/client/src/widgets/Toast.css +++ b/apps/client/src/widgets/Toast.css @@ -5,7 +5,7 @@ align-items: center; position: absolute; width: 100%; - top: 20px; + top: calc(env(safe-area-inset-top) + 20px); pointer-events: none; contain: none; }