mirror of
https://github.com/BradGroux/veritas-kanban.git
synced 2026-08-28 02:44:59 +00:00
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:
parent
da78f22fd6
commit
3917456bf6
1 changed files with 10 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue