From ee6e72979d798016359c1ee288d3f6e002fe2556 Mon Sep 17 00:00:00 2001 From: Pankaj Ghosh Date: Wed, 4 Mar 2026 16:26:08 +0530 Subject: [PATCH] fix: clip custom toast content overflow in stacked view --- src/styles.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/styles.css b/src/styles.css index ae63e40..e5e2684 100644 --- a/src/styles.css +++ b/src/styles.css @@ -723,3 +723,9 @@ html[dir='rtl'], opacity: 0; transform: scale(0.8) translate(-50%, -50%); } + +[data-sonner-toast][data-front='false'] [data-content] { + height: 100%; + width: 100%; + overflow: hidden; +}