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

@@ -66,7 +66,7 @@
}
input {
@extend input[type="text"];
@extend input, [type="text"];
padding: 6px 0 6px 25px;
margin: 5px 0 0 5px;
@@ -143,7 +143,7 @@
}
}
.select2-choices {
@extend input[type="text"];
@extend input, [type="text"];
padding: 6px 3px 3px 3px;
box-shadow: none;
background-image: none !important;