@import 'path/to/file', 'other/file';
// Custom.scss
// Option A: Include all of Bootstrap
// Include any default variable overrides here (though functions won't be available)
@import "../node_modules/bootstrap/scss/bootstrap";
// Then add additional custom code here
// foundation/_code.scss
code {
padding: .25em;
}
// foundation/_lists.scss
ul {
text-align: left;
}
// style.scss
@use 'foundation/code';
@use 'foundation/lists';
// output styles.css
code {
padding: .25em;
}
ul {
text-align: left;
}