You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 13, 2021. It is now read-only.
When I try to compile with sass main.scss theme.css
I get this error: Error: expected selector. ╷ 173 │ 20%:before, │ ^ ╵ ..\base\_mixins.scss 173:3 loopingProgressBar() ..\base\widgets\_widget.scss 501:3 widget() ..\base\widgets\_widget.scss 566:3 @import ..\base\_core.scss 60:9 @import main.scss 5:9 root stylesheet
Looks like the $selector value in _mixins.scss isn't getting set properly, but I can't see where that variable gets assigned.
EDIT: Looks like line 501 in _Widget.scss calls loopingProgressBar, passing 20% instead of a selector: @include loopingProgressBar($looping_progress_bar_width);
Removing that line lets it successfully compile.
When I try to compile with
sass main.scss theme.cssI get this error:
Error: expected selector. ╷ 173 │ 20%:before, │ ^ ╵ ..\base\_mixins.scss 173:3 loopingProgressBar() ..\base\widgets\_widget.scss 501:3 widget() ..\base\widgets\_widget.scss 566:3 @import ..\base\_core.scss 60:9 @import main.scss 5:9 root stylesheetLooks like the $selector value in _mixins.scss isn't getting set properly, but I can't see where that variable gets assigned.
EDIT: Looks like line 501 in _Widget.scss calls loopingProgressBar, passing 20% instead of a selector:
@include loopingProgressBar($looping_progress_bar_width);Removing that line lets it successfully compile.