fix: timeline filter dropdown clipped by overflow-hidden
Remove overflow-hidden from timeline page wrapper — it was clipping the ProjectCombobox and ResourceCombobox dropdown menus. The max-h-[100dvh] constraint combined with min-h-0 on flex children is sufficient to keep the scroll container within viewport bounds. Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
@@ -15,7 +15,7 @@ const TimelineView = dynamic(
|
|||||||
|
|
||||||
export default function TimelinePage() {
|
export default function TimelinePage() {
|
||||||
return (
|
return (
|
||||||
<div className="app-page flex max-h-[100dvh] flex-col gap-5 overflow-hidden pb-6">
|
<div className="app-page flex max-h-[100dvh] flex-col gap-5 pb-6">
|
||||||
<div className="app-page-header">
|
<div className="app-page-header">
|
||||||
<div>
|
<div>
|
||||||
<h1 className="app-page-title">Timeline</h1>
|
<h1 className="app-page-title">Timeline</h1>
|
||||||
|
|||||||
Reference in New Issue
Block a user