PolymerElements / paper-icon-button

A Material Design icon button
https://www.webcomponents.org/element/PolymerElements/paper-icon-button
42 stars 44 forks source link

box-sizing: border-box makes icons tiny #50

Closed atotic closed 8 years ago

atotic commented 8 years ago

If you are using box-sizing: border-box globally, paper-icon-button icons are tiny.

This fixes it:

--paper-icon-button: {
  box-sizing: content-box;
}

You might want to specify box-sizing explicitly by default, because global border-box is fashionable.