More actions
No edit summary |
No edit summary |
||
Line 161: | Line 161: | ||
display: block; | display: block; | ||
} | } | ||
} | |||
/* Uniform icon sizing and hover fix */ | |||
.icon-wrapper { | |||
width: 100px; | |||
height: 100px; | |||
display: inline-flex; | |||
align-items: center; | |||
justify-content: center; | |||
overflow: hidden; | |||
transition: transform 0.2s ease-in-out; | |||
} | |||
.icon-wrapper img { | |||
width: 100%; | |||
height: 100%; | |||
object-fit: contain; | |||
} | |||
/* Hover effect on the wrapper */ | |||
.icon-wrapper:hover { | |||
transform: scale(1.1); | |||
} | } |