fix: restore task drawer scrolling (#1154)

Restores the shared overlay flex-column contract so long Task Detail content remains constrained and scrollable after the Mantine migration.

Fixes #1153.
This commit is contained in:
Matt Ezell 2026-08-22 18:43:48 -05:00 committed by GitHub
parent da78f22fd6
commit 3917456bf6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -98,6 +98,16 @@
scrollbar-width: thin;
}
/* Mantine's Tabs root stylesheet (.m_* class) sets display: block and wins the
cascade over the Tailwind `flex flex-col` utilities on the same element,
which un-constrains the flex-1/min-h-0 overlay scroll panels (issue #935
regression after the Mantine migration). Two-class specificity restores the
flex column so drawer tab panels clamp and scroll again. */
.veritas-overlay-surface .mantine-Tabs-root {
display: flex;
flex-direction: column;
}
.veritas-overlay-scroll::-webkit-scrollbar {
width: 0.625rem;
}