feat: Make sure dragged tab does not allow the title to overflow, b=no-bug, c=no-component

This commit is contained in:
mr. m
2026-01-07 01:05:08 +01:00
parent ec4a55e1f8
commit 3c7fb093db

View File

@@ -130,6 +130,7 @@
this.#maybeCreateDragImageDot(movingTabs, wrapper);
wrapper.style.width = tabRect.width + 'px';
wrapper.style.height = tabRect.height * movingTabs.length + 'px';
wrapper.style.overflow = 'clip';
wrapper.style.position = 'fixed';
wrapper.style.top = '-9999px';
periphery.appendChild(wrapper);