Looking to create numerous new classes using bootstrap 4 breakpoints and wanting to utilize sass for this task, however, I am uncertain about the specific approach.
Essentially, the classes are structured as follows:
@media (max-width: 767px) {
.bg-md-img {
background-image: none !important;
}
}
But this structure needs to be applied for each breakpoint. I am aware of the media-breakpoint-down
mixin that I can utilize somehow, but I am struggling with properly looping through the breakpoints.