Skip to content

Commit cac0138

Browse files
authored
fix(grid): fix grid shadows (#15990)
1 parent 3a5d4e3 commit cac0138

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,12 +456,12 @@
456456

457457
@if not($grid-shadow) {
458458
$grid-elevation: map.get($grid-schema, 'grid-elevation');
459-
$grid-shadow: elevation(var(--grid-elevation));
459+
$grid-shadow: elevation($grid-elevation);
460460
}
461461

462462
@if not($drag-shadow) {
463463
$drag-elevation: map.get($grid-schema, 'drag-elevation');
464-
$drag-shadow: elevation(var(--drag-elevation));
464+
$drag-shadow: elevation($drag-elevation);
465465
}
466466

467467
@if not($drop-area-border-radius) {

0 commit comments

Comments
 (0)