FEEDBACK Make page-icon clickable by moving it inside list-item link

This commit is contained in:
Antoine M 2025-09-24 16:26:37 +02:00
parent 4610c5c725
commit 8ad5e09694

View File

@ -105,9 +105,16 @@
} }
li.menu-item.has-page-icon { li.menu-item.has-page-icon {
@apply flex flex-row lg:flex-col items-center justify-start lg:justify-end gap-4 font-normal tracking-wide; @apply gap-4 font-normal tracking-wide;
a {
@apply flex flex-row lg:flex-col items-center justify-start lg:justify-end gap-4 font-normal tracking-wide;
}
.page_icon { .page_icon {
@apply w-7 h-7 object-contain object-center; @apply w-7 h-7 object-contain object-center;
transition: transform 0.3s ease-out;
}
&:hover .page_icon {
transform: scale(1.2);
} }
} }
li.menu-item.menu-item-has-children:hover { li.menu-item.menu-item-has-children:hover {