Icon size problem

Good evening,

I have a problem with an icon. I would like to know how to make my “Mail” icon the same size so that it can fit in the square instead of the arrow?

I can display the email icon but I can’t adapt it to get the right size
https://codepen.io/aaashpnt-the-sans/pen/ExBxpoK

A little CSS can be added to size the icon.

.icon--mail {
  width: 50px;
}

Simply target an appropriate class which the icon possesses.
If all icons are to share the same size use a common class.

1 Like

ah yes with the simpler css it works.

Thank you for your help

1 Like