Skip to content

Commit fa576dc

Browse files
committed
fix: auto scroll is not working on devices narrower than 721px(angular#1219)
The flex-basis in the class docs-component-viewer-sidenav-container property was creating problems with the scroll bar in the page https://material.angular.io/cdk/drag-drop/examples for small devices. Fixes angular#1219 and angular/components#26476
1 parent 7aae145 commit fa576dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/pages/component-sidenav/component-sidenav.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ div.docs-component-viewer-nav-content .mat-nav-list .mat-mdc-list-item .mat-list
104104

105105
@media (max-width: 720px) {
106106
.docs-component-viewer-sidenav-container {
107-
flex: 1 0 auto;
107+
flex: 1 0;
108108
}
109109

110110
.docs-component-sidenav-body-content {

0 commit comments

Comments
 (0)