After incorporating styles from a Bootstrap theme into my Angular 8 project and updating angular.json, I encountered a compile error displaying the following message:
(7733:13) Unclosed string
7731 | }
7732 | .accordion_wrapper .panel .panel-heading a.collapsed:after {
> 7733 | content: "+";
| ^
If I remove these specific contents, another error arises related to type="checkbox"
.
Attached CSS code can be found here: https://jsfiddle.net/z8b9mvsy/
Despite attempting to eliminate the content attributes as a solution, the issue persists.
.accordion_wrapper .panel .panel-heading a.collapsed:after {
content: "+";
color: #fff;
border: 1px solid #fff;
}
.handyman_sec1_wrapper input[type="checkbox"] {
display: none;
}