From f397f5b00256842823cfcf5e6b0a010222676a5e Mon Sep 17 00:00:00 2001 From: chihlasm Date: Mon, 23 Mar 2026 21:28:04 +0000 Subject: [PATCH] =?UTF-8?q?Revert=20"fix(qa):=20ISSUE-001=20=E2=80=94=20fe?= =?UTF-8?q?edback=20panel=20bleeds=20on=20mobile=20due=20to=20Tailwind=20v?= =?UTF-8?q?4=20translate"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit fbf30f9c73e1d0fa68cdfb803989149729c59680. --- frontend/src/components/common/FeedbackWidget.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/common/FeedbackWidget.tsx b/frontend/src/components/common/FeedbackWidget.tsx index fbb0e592..735cc4aa 100644 --- a/frontend/src/components/common/FeedbackWidget.tsx +++ b/frontend/src/components/common/FeedbackWidget.tsx @@ -130,13 +130,12 @@ export function FeedbackWidget() { ref={panelRef} className={cn( 'fixed right-0 top-0 bottom-0 z-50 w-[280px] flex flex-col', - 'duration-200 ease-out', + 'transition-transform duration-200 ease-out', + open ? 'translate-x-0' : 'translate-x-full' )} style={{ background: 'var(--color-bg-card)', borderLeft: '1px solid var(--color-border-default)', - transform: open ? 'translateX(0)' : 'translateX(100%)', - transition: 'transform 200ms ease-out', }} aria-hidden={!open} >