I am currently working on an Angular 5.2.10 project that utilizes angular-cli and bootstrap version: 4.0.0-beta.2 with a specific css class called .en-icon-24:
.en-icon-24 {
background: url(../../../../assets/img/icons.png) -370px 0px;
width: 24px;
height: 24px;
}
Initially, everything displays correctly in the browser:
https://i.stack.imgur.com/cfMiY.png
However, when I upgraded my npm version of bootstrap from 4.0.0-beta.2 to 4.1.0, the following issue occurred in the browser:
https://i.stack.imgur.com/kSWpK.png
As a result, the image is no longer positioned correctly (the -370px and 0 values are missing)
Does anyone have any suggestions for resolving this problem?