Bootstrap base font-size
_reboot.scss
body {
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #292b2c;
background-color: #fff;
}
. -. , , css/js.
, 14px
, style.css
( css)
body {
font-size: 0.875rem;
}
!important
, , .
custom.scss
:
$custom-variable:0.875rem;
:
@import "./src/scss/_modules/custom";
@import "./bower_components/bootstrap/scss/bootstrap";
body {
font-size:$custom-variable;
}