0

Is there way to set the size of polymer paper-menu-button element. I think it is the icon size is set to 24px. I wish to have it as 20px but I cannot find a way to do it.

Thanks Dennis

4

1 回答 1

3

我试过了,它奏效了。将此样式添加到包含您的元素的 Polymer<paper-menu-button>元素。

  paper-menu-button /deep/ core-icon[role=img] {
    height: 20px;
    width: 20px;
  }

我添加[role=img]以增加选择性。

于 2014-08-29T17:44:03.790 回答