fix: overflowing tooltip on firefox

This commit is contained in:
abhijithvijayan
2026-01-04 03:16:33 +05:30
parent 6d01680a4b
commit 444ca0a97c

View File

@@ -80,3 +80,16 @@
border-color: transparent transparent $gray-800 transparent; border-color: transparent transparent $gray-800 transparent;
} }
} }
// Position the last tooltip (Settings) to the right to prevent overflow
.iconWrapper:last-child .tooltip {
left: auto;
right: 0;
transform: none;
&::before {
left: auto;
right: 0.5rem;
transform: none;
}
}