Deal with deprecated @extend syntax

Errors:
```
SassError: SassError: compound selectors may no longer be extended.
Consider `@extend a, :hover` instead.
See http://bit.ly/ExtendCompound for details.
```
This commit is contained in:
Matt-Yorkley
2021-06-14 09:15:19 +01:00
parent 2992439706
commit 2ac3cda2f4
3 changed files with 9 additions and 9 deletions

View File

@@ -127,7 +127,7 @@ nav.menu {
}
&.selected a {
@extend a:hover;
@extend a, :hover;
}
}
}