From 11450ecf2def325ba9a71cea68cd3226c63d9ac8 Mon Sep 17 00:00:00 2001 From: Giuseppe Ciotola <30926550+gciotola@users.noreply.github.com> Date: Fri, 27 Mar 2026 17:46:02 +0100 Subject: [PATCH] fix(Overlay): update drawer width to w-170 with max-w-[95vw] on md breakpoint --- packages/app-elements/src/ui/internals/Overlay.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app-elements/src/ui/internals/Overlay.tsx b/packages/app-elements/src/ui/internals/Overlay.tsx index 6e209015..0ef86a96 100644 --- a/packages/app-elements/src/ui/internals/Overlay.tsx +++ b/packages/app-elements/src/ui/internals/Overlay.tsx @@ -131,7 +131,7 @@ export const Overlay: React.FC = ({ "bg-gray-50": backgroundColor === "light", "bg-white": backgroundColor == null, "inset-0 w-full": !drawer, - "top-0 right-0 bottom-0 w-full md:w-1/2 max-w-150 animate-slide-in-right": + "top-0 right-0 bottom-0 w-full md:w-170 max-w-[95vw] animate-slide-in-right": drawer, }, )}