I attempted to incorporate some of Bootstrap's mixins into Ionic 2 but encountered an error related to incompatible units that I am struggling to resolve.
node_modules\bootstrap-sass\assets\stylesheets\bootstrap\_variables.scss
Error: Incompatible units: 'px' and 'rem'.
on line 214 of node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss
>> $input-height-base: ($line-height-computed + ($padding-base-verti
----------------------------------^
In my app.core.scss
file:
@import "../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
As stated in my package.json
:
"dependencies": {
"bootstrap": "^3.3.7",
"bootstrap-sass": "^3.3.7",
Any assistance would be greatly appreciated.