I switched from Bootstrap 3 to Bootstrap 4. I use sass sources, which I compile on the go. When I changed libraries, I started getting errors on my media switches, i.e. for
@media screen and (min-width: $screen-md-min) {
padding: 40px 50px;
}
I get an Undefined error
: "$ screen-md-min".
What is the correct way to access Bootstrap4 variables?
Thank.
source
share