Skip to content

Commit 6a35b66

Browse files
committed
fix(pivot): Fix horizontal scrolling overflow issue
1 parent cd7687f commit 6a35b66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-header-row.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<div #pivotContainer class="igx-grid__tr-action" [style.min-width.px]="grid.pivotRowWidths"
7373
(igxDragEnter)="onAreaDragEnter($event, rowArea, 0)" (igxDragLeave)="onAreaDragLeave($event, rowArea)"
7474
igxDrop (dropped)="onDimDrop($event, rowArea, 0)" (pointerdown)="$event.preventDefault()"
75-
style='display: flex; align-items: flex-end;'>
75+
style='display: flex; align-items: flex-end; z-index: 4; background: inherit;'>
7676

7777
<div *ngIf="grid.rowDimensions.length === 0">
7878
<span class='igx-pivot__emptyChipArea'>Drop Row Fields here.</span>
@@ -131,4 +131,4 @@
131131
</div>
132132
<!-- Header thumb area -->
133133
<div *ngIf="!row" class="igx-grid-thead__thumb" [hidden]="!grid.hasVerticalScroll()" [style.width.px]="grid.scrollSize">
134-
</div>
134+
</div>

0 commit comments

Comments
 (0)