Необходимо для последнего элемента при наведении не подчеркивать элемент
Прописываю для last-child &:hover {text-decoration: none}, но не срабатывает.
CrumbLink {
/* Оформление */
text-transform: none;
text-decoration: inherit;
color: var(--gray-55);
&:hover {
/* Оформление */
text-decoration: underline;
}
&:last-child {
&:hover {
text-decoration: none;
}
}
}