When it comes to adding responsive mixins in Bootstrap 4, where is the best place to place them? I've experimented with putting them in _custom.scss and mixins.scss, but unfortunately, they do not seem to work. I am utilizing the built-in mixins provided by Bootstrap 4, such as:
@include media-breakpoint-up(sm) {
.some-class {
display: block;
}
}