My SCSS structure:
main.scss:
@import '~bootstrap/scss/functions';
@import 'theme/variables';
@import '~bootstrap/scss/bootstrap';
@import 'theme/theme';
theme.scss:
...
@import "utilities"
utilities.scss:
$utilities: (
"overflow": (
responsive: true,
property: overflow,
values: visible hidden scroll auto,
),
);
The above is basically an example from the documentation. This was supposed to add new overflow utilities classes. However, nothing was added. Any ideas?