Skip to content

Commit

Permalink
Merge pull request #3378 from IgniteUI/fix-toolbar-ie-11-bug
Browse files Browse the repository at this point in the history
style(toolbar): Fix IE11 toolbar height bug
  • Loading branch information
kdinev authored Dec 11, 2018
2 parents 18b7894 + 27c164d commit e1678af
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 e1678af

Please sign in to comment.