Encountering difficulties when compiling certain bootstrap 4 modules (switching from beta3).
Despite the fact that the issue can be resolved by adding @charset: 'UTF-8';
to the _hover.scss
mixin partial (which is flagged as deprecated within the file), it seems unnecessary since it should compile seamlessly just like previous beta versions.
Snippet from _hover.scss
:
@mixin hover {
&:hover { @content; }
}
@mixin hover-focus {
&:hover,
&:focus {
@content;
}
}
@mixin plain-hover-focus {
&,
&:hover,
&:focus {
@content;
}
}
@mixin hover-focus-active {
&:hover,
&:focus,
&:active {
@content;
}
}
https://i.sstatic.net/o81bH.png
After checking SCSS files, unable to pinpoint the exact issue, quotes appear to be correct.