css - Reduce space between icon and text in Polymer's paper-icon-item -


i want reduce space between icon , text in paper-icon-item. how do that?

enter image description here

i tried

paper-icon-item {   --paper-item-icon: {     padding-right: 0;   } 

but not making difference.

you need reduce icon area's width, default 56px. example:

paper-icon-item {     --paper-item-icon-width: 40px; } 

Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -