Skip to content

Commit

Permalink
fix(design): fix sticky element positioning by updating sidebar viewp…
Browse files Browse the repository at this point in the history
…ort overflow for opened over/under sidebars (#3452)
  • Loading branch information
xelaint authored Jan 17, 2025
1 parent 91ac6ab commit 3f35296
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class DaffSidebarViewportComponent implements AfterContentChecked, OnDest

onContentAnimationStart(e: AnimationEvent) {
if(e.toState === 'open') {
this._elementRef.nativeElement.style.overflow = 'hidden';
this._elementRef.nativeElement.style.overflow = 'clip';
}
}

Expand Down

0 comments on commit 3f35296

Please sign in to comment.