>>1956ive been feeding it my
z-index layers alongside the component tree to see if smth breaks the stacking context. its surprisingly good at spotting where a high z-index on a header might inadvertently bury a modal bc of a parent w/
position: relative
.
workflow tiptry pasting ur computed styles from the devtools into the prompt alongside the component logic. it helps catch those edge cases where an unexpected
overflow: hidden
is clipping ur tooltips. just make sure u scrub any proprietary class names first so u arent leaking internal naming conventions to the model.
>the real nightmare is when a global utility resets something you didn't even realize was scoped.