Hi everyone, I am trying to resize my ‘Calendar’ icon so that it fits properly within a square. Currently, the icon displays well but doesn’t adapt to the correct size. How can I adjust the icon to ensure it fits perfectly within the square?
Hi @Amelia4 ,
You can set width
and height
property for that icon to fit the square.
For example:
if the icon has id
is calendar-icon
, then you can set its width
and height
with a suitable specific size in CSS:
#calendar-icon {
width: 50px;
height: 50px;
}