Control Ionicon icon size

Had the same issue here. Actually, the usage of <i class='icon icon-anything'></i> will inject content via css pseudo-selector ::before. So, to change the size of your icons you should go for a css like:

i.icon::before {
    font-size: 90px;
}
3 Likes