Skip to content

Commit

Permalink
fix(expansion): use correct expanded line-height (#5744)
Browse files Browse the repository at this point in the history
  • Loading branch information
willshowell authored and kara committed Jul 20, 2017
1 parent 4ea4baa commit a921948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/expansion/expansion-panel-header.ts
Expand Up @@ -57,7 +57,7 @@ import {MdExpansionPanel, EXPANSION_PANEL_ANIMATION_TIMING} from './expansion-pa
]),
trigger('expansionHeight', [
state('collapsed', style({height: '48px', 'line-height': '48px'})),
state('expanded', style({height: '64px', 'line-height': '68px'})),
state('expanded', style({height: '64px', 'line-height': '64px'})),
transition('expanded <=> collapsed', animate(EXPANSION_PANEL_ANIMATION_TIMING)),
]),
],
Expand Down

0 comments on commit a921948

Please sign in to comment.