Skip to content

Commit

Permalink
add more size styles to icons
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelcobain committed May 11, 2017
1 parent 69cc168 commit 51a6250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/components/paper-icon.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ let PaperIconComponent = Component.extend(ColorMixin, {
let size = this.get('size');

if (size) {
return Str.htmlSafe(`height: ${size}px; font-size: ${size}px;`);
return Str.htmlSafe(`height: ${size}px; min-height: ${size}px; min-width: ${size}px; font-size: ${size}px; line-height: ${size}px;`);
}
})
});
Expand Down

0 comments on commit 51a6250

Please sign in to comment.