From b42e754781a6b561dd287966fb822f62424c6668 Mon Sep 17 00:00:00 2001 From: Steve Hanlon Date: Mon, 16 Feb 2026 06:21:57 +0000 Subject: [PATCH] Fix right-side floating widget position near bottom-right corner Anchor the vertical widget at bottom: 150px with transform-origin at the bottom-right corner so it sits fully visible along the right edge. Co-Authored-By: Claude Opus 4.6 --- public/css/banner.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/css/banner.css b/public/css/banner.css index af3fbac..25cb6c2 100644 --- a/public/css/banner.css +++ b/public/css/banner.css @@ -285,9 +285,9 @@ body.att-cc-modal-active { .att-cc-widget--right { right: 0; - top: 50%; - transform: rotate(-90deg) translateX(50%); - transform-origin: right center; + bottom: 150px; + transform: rotate(-90deg); + transform-origin: 100% 100%; border-radius: 8px 8px 0 0; }