I write CSS in BEM style and have this code:
.nav {
&__list {
&__item {
}
}
&__link {
&--active {
}
}
}
How do I get .nav .nav__link--active
and .nav__link.nav__link--active
from code above? How can I enhance the specificity by this method?