在我的
styles/app-theme.html
我正在尝试更改的菜单图标大小
paper-drawer-panel
在媒体查询中。此元素位于index.html中。因为它在阴影域中,我似乎无法访问它。我尝试了:
可能不相关,但这里是index.html:
<template is="dom-bind" id="app">
<paper-drawer-panel force-narrow="true">
<div drawer>
<drawer-custom></drawer-custom>
</div>
<div main>
<div id="header-v-center">
<paper-icon-button id="paper-toggle" icon="menu" paper-drawer-toggle>
@media (max-width: 600px) {
iron-icon#icon::shadow {
height: 6px;
width: 5px;
}
}
和
@media (max-width: 600px) {
:root {
--iron-icon-height: 6px;
--iron-icon-width: 50px;
}
}
没有成功。有什么建议吗?