Skip to content

Commit 33e9379

Browse files
committed
fix: top of slide-out
1 parent 39dc552 commit 33e9379

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/Projects/EpicsView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ export const EpicsView: React.FC<EpicsViewProps> = ({
334334

335335
{/* Sliding Epic Selector Panel */}
336336
<div
337-
className={`fixed top-0 right-0 h-full w-80 bg-background border-l shadow-xl z-10 transition-all duration-300 ease-in-out ${
337+
className={`fixed top-[var(--app-header-height)] right-0 h-[calc(100vh-4rem)] w-80 bg-background border-l shadow-xl z-10 transition-all duration-300 ease-in-out ${
338338
isEpicSelectorOpen
339339
? 'translate-x-0 opacity-100 visible'
340340
: 'translate-x-full opacity-0 invisible'

src/components/Projects/PlanningView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ export const PlanningView: React.FC<PlanningViewProps> = ({
446446

447447
{/* Sliding Sprint Selector Panel */}
448448
<div
449-
className={`fixed top-0 right-0 h-full w-80 bg-background border-l shadow-xl z-10 transition-all duration-300 ease-in-out ${
449+
className={`fixed top-[var(--app-header-height)] right-0 h-[calc(100vh-4rem)] w-80 bg-background border-l shadow-xl z-10 transition-all duration-300 ease-in-out ${
450450
isSprintSelectorOpen
451451
? 'translate-x-0 opacity-100 visible'
452452
: 'translate-x-full opacity-0 invisible'

src/components/Projects/SprintBoardView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ export const SprintBoardView: React.FC<SprintBoardViewProps> = ({
473473

474474
{/* Sliding Sprint Selector Panel */}
475475
<div
476-
className={`fixed top-0 right-0 h-full w-80 bg-background border-l shadow-xl z-10 transition-all duration-300 ease-in-out ${
476+
className={`fixed top-[var(--app-header-height)] right-0 h-[calc(100vh-4rem)] w-80 bg-background border-l shadow-xl z-10 transition-all duration-300 ease-in-out ${
477477
isSprintSelectorOpen
478478
? 'translate-x-0 opacity-100 visible'
479479
: 'translate-x-full opacity-0 invisible'

0 commit comments

Comments
 (0)