After migrating from Bootstrap 3 to Bootstrap 4 and utilizing sass sources that I compile on the go, I encountered an issue with media switches. Specifically, for
@media screen and (min-width: $screen-md-min) {
padding: 40px 50px;
}
An error message has been popping up stating Undefined variable: "$screen-md-min".
Could anyone advise on the correct method to access variables in Bootstrap4?
Thank you.