Skip to content

Commit

Permalink
fix(layer-list): fix layer-list tool crop (#925)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeLafreniere18 committed Oct 15, 2021
1 parent b1cc06f commit a3b32dd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Expand Up @@ -10,7 +10,7 @@
</igo-layer-list-tool>
</mat-list>

<mat-list-item *ngIf="selection">
<mat-list-item *ngIf="selection" class="select-all">
<mat-checkbox
class="select-all-checkbox mat-subheading-2"
[color]="!selectAllCheck && layersChecked.length > 0 ? 'accent' : 'primary'"
Expand Down
Expand Up @@ -9,7 +9,7 @@
}

:host .igo-list-tools-multi {
height: calc(100% - 178px);
height: calc(100% - 191px);
padding-top: 8px;
}

Expand Down Expand Up @@ -84,3 +84,7 @@ mat-checkbox ::ng-deep .mat-checkbox-inner-container {
padding-top: 20px;
}
}

.select-all ::ng-deep .mat-list-item-content {
margin: 0px;
}

0 comments on commit a3b32dd

Please sign in to comment.