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 <noreply@anthropic.com>
This commit is contained in:
2026-02-16 06:21:57 +00:00
parent 4adda0ded7
commit b42e754781

View File

@@ -285,9 +285,9 @@ body.att-cc-modal-active {
.att-cc-widget--right { .att-cc-widget--right {
right: 0; right: 0;
top: 50%; bottom: 150px;
transform: rotate(-90deg) translateX(50%); transform: rotate(-90deg);
transform-origin: right center; transform-origin: 100% 100%;
border-radius: 8px 8px 0 0; border-radius: 8px 8px 0 0;
} }