Angular material dialog component hides all my website components

前端 未结 8 2466
野趣味
野趣味 2021-02-14 08:05

I\'m using angular 5 and angular material (latest version) and I\'m trying to open a dialog from a page. When I click the button that triggers the opening, the entire website is

8条回答
  •  Happy的楠姐
    2021-02-14 08:54

    For removing the blank white page background, you can use any one of the css :

    .cdk-global-scrollblock{
        height: auto
      }
    
    or
    
    .cdk-global-scrollblock{
        position: static !important;
        width: initial !important;
        overflow-y: inherit !important;
      }
    

提交回复
热议问题