Search code examples
javascriptcssangularsassangular-material

Mat-tree more text border align issue


mat-tree more text border line missing how to fix this https://stackblitz.com/edit/material-tree-nested-c6ydkc?file=app%2Fapp.component.ts

enter image description here


Solution

  • This seems to fix the button alignment problem!

    .alignment-fix {
      .mat-tree-node {
        display: flex !important;
        align-items: end !important;
      }
    }
    

    stackblitz