I have the following css declaration in a .less file:
.qb-select-content {
    width: calc(100% - 26px);
    float: left;
}
When I compile this code, the angular-cli converts the width: calc(100% - 26px); to width: calc(76%).
Any one can explate why this is happening and how can I prevent this behavior?
 
    