I have this issue: when the screen is at the right size (in this case, under 768px), the mediaquery isn't applied.
Here is my element:
<div class="container d-flex flex-column flex-md-row ">
...
</div>
Here are the classes:
@media (min-width: 768px) {
.flex-md-row {
flex-direction: row;
}
}
.flex-column {
flex-direction: column;
}
These are how they are applied according to Chrome Webdev Tools:

And yes, I have this tag in my "head":
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Since everything matches, why isn't "flex-column" applied instead of "flex-md-row".