Skip to content

Commit 3f35296

Browse files
authored
fix(design): fix sticky element positioning by updating sidebar viewport overflow for opened over/under sidebars (#3452)
1 parent 91ac6ab commit 3f35296

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/design/sidebar/src/sidebar-viewport/sidebar-viewport.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export class DaffSidebarViewportComponent implements AfterContentChecked, OnDest
103103

104104
onContentAnimationStart(e: AnimationEvent) {
105105
if(e.toState === 'open') {
106-
this._elementRef.nativeElement.style.overflow = 'hidden';
106+
this._elementRef.nativeElement.style.overflow = 'clip';
107107
}
108108
}
109109

0 commit comments

Comments
 (0)