Skip to content

Commit

Permalink
Merge pull request #3387 from IgniteUI/fix-toolbar-ie-11-bug-master
Browse files Browse the repository at this point in the history
Fix IE11 bug with toolbar height
  • Loading branch information
kdinev authored Dec 11, 2018
2 parents 3ec517b + 1e24d6c commit c6f165e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
padding: map-get($grid-toolbar-padding, 'cosy');
border-bottom: 1px solid igx-color(map-get($theme, 'palette'), 'grays', 300);
background: --var($theme, 'background-color');
min-height: map-get($grid-toolbar-height, 'comfortable');
height: map-get($grid-toolbar-height, 'comfortable');

%igx-button--flat {
background: --var($theme, 'button-background');
Expand Down Expand Up @@ -232,12 +232,12 @@
}

%igx-grid-toolbar--cosy {
min-height: map-get($grid-toolbar-height, 'cosy');
height: map-get($grid-toolbar-height, 'cosy');
padding: map-get($grid-toolbar-padding, 'cosy');
}

%igx-grid-toolbar--compact {
min-height: map-get($grid-toolbar-height, 'compact');
height: map-get($grid-toolbar-height, 'compact');
padding: map-get($grid-toolbar-padding, 'compact');
}

Expand Down

0 comments on commit c6f165e

Please sign in to comment.